File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 8
8
import AccountCenter from ' ./account-center/Index.svelte'
9
9
import Notify from ' ./notify/Index.svelte'
10
10
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'
14
13
15
14
const { device } = configuration
16
15
const accountCenter$ = state
@@ -21,7 +20,9 @@ import type { Notification } from '../types'
21
20
.select (' notify' )
22
21
.pipe (startWith (state .get ().notify ), shareReplay (1 ))
23
22
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 ))
25
26
26
27
const positioningDefaults = {
27
28
topLeft: ' top: 0; left: 0;' ,
You can’t perform that action at this time.
0 commit comments