Skip to content

Commit

Permalink
rebase and remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
claireolmstead committed Mar 6, 2024
1 parent d61ce60 commit 555d846
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
4 changes: 1 addition & 3 deletions src/lib/stores.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { writable } from 'svelte/store';
import { ActionForms, defaultDotApi, type DotApi } from '$lib/storeTypes';
import { defaultDotApi, type DotApi } from '$lib/storeTypes';
import { storable } from './stores/storable';
import { derived } from 'svelte/store';
import { user } from './stores/userStore';
Expand All @@ -8,8 +8,6 @@ import { pageContent } from './stores/pageContentStore';

export const dotApi = writable<DotApi>(defaultDotApi);

export const storeCurrentAction = writable(ActionForms.NoForm);

export const isLoggedIn = storable<boolean>('isLoggedIn', false);

export const logInPromise = derived([user], ([$user]) =>
Expand Down
4 changes: 0 additions & 4 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
import BecomeAProvider from '$components/BecomeAProvider.svelte';
import ProviderLogin from '$components/ProviderLogin.svelte';
import { pageContent, PageContent } from '$lib/stores/pageContentStore';
$: {
console.log('pageConents', $pageContent);
}
</script>

{#if $pageContent === PageContent.Dashboard}
Expand Down

0 comments on commit 555d846

Please sign in to comment.