mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-11 05:59:15 +00:00
fix: show correct app name on sign out page
This commit is contained in:
@@ -37,11 +37,12 @@
|
||||
|
||||
<p class="text-muted-foreground mt-2">
|
||||
{@html m.do_you_want_to_sign_out_of_pocketid_with_the_account({
|
||||
username: $userStore?.username ?? ''
|
||||
username: $userStore?.username ?? '',
|
||||
appName: $appConfigStore.appName
|
||||
})}
|
||||
</p>
|
||||
<div class="mt-10 flex w-full justify-stretch gap-2">
|
||||
<Button class="w-full" variant="secondary" onclick={() => history.back()}>{m.cancel()}</Button>
|
||||
<Button class="w-full" {isLoading} onclick={signOut}>{m.sign_out()}</Button>
|
||||
<Button class="flex-1" variant="secondary" onclick={() => history.back()}>{m.cancel()}</Button>
|
||||
<Button class="flex-1" {isLoading} onclick={signOut}>{m.sign_out()}</Button>
|
||||
</div>
|
||||
</SignInWrapper>
|
||||
|
||||
Reference in New Issue
Block a user