Skip to content

Commit

Permalink
Prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamj1232 committed Jul 1, 2022
1 parent f3814d7 commit 5c29be6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/core/src/views/Index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@
import AccountCenter from './account-center/Index.svelte'
import Notify from './notify/Index.svelte'
import { configuration } from '../configuration'
import type { Observable } from 'rxjs';
import type { Notification } from '../types'
import type { Observable } from 'rxjs'
import type { Notification } from '../types'
const { device } = configuration
const accountCenter$ = state
Expand All @@ -21,7 +20,9 @@ import type { Notification } from '../types'
.select('notify')
.pipe(startWith(state.get().notify), shareReplay(1))
const notifications$: Observable<Notification[]> = state.select('notifications').pipe(startWith(state.get().notifications))
const notifications$: Observable<Notification[]> = state
.select('notifications')
.pipe(startWith(state.get().notifications))
const positioningDefaults = {
topLeft: 'top: 0; left: 0;',
Expand Down

0 comments on commit 5c29be6

Please sign in to comment.