Skip to content

Commit 8cc41f5

Browse files
committed
More biome fixes
1 parent 54aa7a0 commit 8cc41f5

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

frontend/src/lib/api/publicBoard.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ export const publicBoard = {
1313
},
1414

1515
async getItem(slug, key) {
16-
const res = await fetch(`/api/public/board/${encodeURIComponent(slug)}/items/${encodeURIComponent(key)}`);
16+
const res = await fetch(
17+
`/api/public/board/${encodeURIComponent(slug)}/items/${encodeURIComponent(key)}`
18+
);
1719
if (!res.ok) {
1820
const err = new Error(`${res.status}`);
1921
err.status = res.status;

frontend/src/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"code": "v0.5.0-rc2", "name": "Clear Horizon"}
1+
{ "code": "v0.5.0-rc2", "name": "Clear Horizon" }

0 commit comments

Comments
 (0)