Skip to content

Commit 49cfaf3

Browse files
Fix refresh flag button placement (#79)
* fix server error message to include status page and github links * fix placement of refresh flags button
1 parent 3d2705f commit 49cfaf3

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

client/src/lib/components/Settings.svelte

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,6 @@
213213

214214
<div class="flex flex-row items-center justify-between mb-4">
215215
<h1 class="text-lg font-bold">Currently signed in as: {email}</h1>
216-
<Button variant="tonal" onclick={manualRefreshFeatureFlags} disabled={isRefreshingFlags}>
217-
{isRefreshingFlags ? 'Refreshing...' : 'Refresh Flags'}
218-
</Button>
219216
</div>
220217

221218
<div class="flex flex-col gap-3">
@@ -310,6 +307,11 @@
310307
</label>
311308
</div>
312309
</div>
310+
<div class="flex flex-col gap-2 items-center justify-center mt-6 w-full">
311+
<Button variant="tonal" onclick={manualRefreshFeatureFlags} disabled={isRefreshingFlags}>
312+
{isRefreshingFlags ? 'Refreshing...' : 'Refresh Flags'}
313+
</Button>
314+
</div>
313315
{#if showClearDataButton}
314316
<div class="flex flex-col gap-2 items-center justify-center mt-6 w-full">
315317
<Button variant="filled" onclick={clearLocalStorage}>Clear Local Data</Button>

0 commit comments

Comments
 (0)