We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54aa7a0 commit 8cc41f5Copy full SHA for 8cc41f5
2 files changed
frontend/src/lib/api/publicBoard.js
@@ -13,7 +13,9 @@ export const publicBoard = {
13
},
14
15
async getItem(slug, key) {
16
- const res = await fetch(`/api/public/board/${encodeURIComponent(slug)}/items/${encodeURIComponent(key)}`);
+ const res = await fetch(
17
+ `/api/public/board/${encodeURIComponent(slug)}/items/${encodeURIComponent(key)}`
18
+ );
19
if (!res.ok) {
20
const err = new Error(`${res.status}`);
21
err.status = res.status;
frontend/src/version.json
@@ -1 +1 @@
1
-{"code": "v0.5.0-rc2", "name": "Clear Horizon"}
+{ "code": "v0.5.0-rc2", "name": "Clear Horizon" }
0 commit comments