We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6db10cf commit d5b3999Copy full SHA for d5b3999
src/lib/news/news.json
@@ -5,6 +5,11 @@
5
"id": 0,
6
"content": "New: This banner and PR/issues details are now available!",
7
"endDate": "2024-08-01"
8
+ },
9
+ {
10
+ "id": 1,
11
+ "content": "You can now authenticate with your own GitHub token! Check the settings in the top-right corner of the page.",
12
+ "endDate": "2024-08-25"
13
}
14
]
15
src/routes/+layout.svelte
@@ -233,7 +233,7 @@
233
disabled={ghTokenField.length > 0 && !isTokenValid}
234
on:click={() => {
235
settingsOpen = false;
236
- settings.set({ githubToken: ghTokenField });
+ settings.set(ghTokenField ? { githubToken: ghTokenField } : {});
237
invalidateAll();
238
}}
239
>
0 commit comments