-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(frontend): rename pages to settings (#2083)
# Motivation Not sure why the folder that contains the settings related components, and solely those components, is named `pages`. Feels like `settings` would make more sense here. # Changes - Rename `pages` to `settings`.
- Loading branch information
1 parent
6584747
commit ad0d22d
Showing
6 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script> | ||
import { authSignedIn } from '$lib/derived/auth.derived'; | ||
import SettingsSignedIn from '$lib/components/settings/SettingsSignedIn.svelte'; | ||
import SettingsSignedOut from '$lib/components/settings/SettingsSignedOut.svelte'; | ||
import SettingsVersion from '$lib/components/settings/SettingsVersion.svelte'; | ||
</script> | ||
|
||
{#if $authSignedIn} | ||
<SettingsSignedIn /> | ||
{:else} | ||
<SettingsSignedOut /> | ||
{/if} | ||
|
||
<SettingsVersion /> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters