Skip to content

Commit 5c29be6

Browse files
committed
Prettier formatting
1 parent f3814d7 commit 5c29be6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/core/src/views/Index.svelte

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
import AccountCenter from './account-center/Index.svelte'
99
import Notify from './notify/Index.svelte'
1010
import { configuration } from '../configuration'
11-
import type { Observable } from 'rxjs';
12-
import type { Notification } from '../types'
13-
11+
import type { Observable } from 'rxjs'
12+
import type { Notification } from '../types'
1413
1514
const { device } = configuration
1615
const accountCenter$ = state
@@ -21,7 +20,9 @@ import type { Notification } from '../types'
2120
.select('notify')
2221
.pipe(startWith(state.get().notify), shareReplay(1))
2322
24-
const notifications$: Observable<Notification[]> = state.select('notifications').pipe(startWith(state.get().notifications))
23+
const notifications$: Observable<Notification[]> = state
24+
.select('notifications')
25+
.pipe(startWith(state.get().notifications))
2526
2627
const positioningDefaults = {
2728
topLeft: 'top: 0; left: 0;',

0 commit comments

Comments
 (0)