about summary refs log tree commit diff
path: root/src/state/session/index.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-03-13 01:55:14 +0000
committerSamuel Newman <mozzius@protonmail.com>2024-03-13 01:55:14 +0000
commit125ef1c75610c7add79f6a917bfa058f9265d5d4 (patch)
tree727ff0713592fc550e77db10ad020b852100eb3e /src/state/session/index.tsx
parent1512b5cf68e9e92801a894392569b444fd6af1d1 (diff)
downloadvoidsky-125ef1c75610c7add79f6a917bfa058f9265d5d4.tar.zst
Revert "run linter"
This reverts commit 1512b5cf68e9e92801a894392569b444fd6af1d1.
Diffstat (limited to 'src/state/session/index.tsx')
-rw-r--r--src/state/session/index.tsx11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx
index 9918e2e75..46628318c 100644
--- a/src/state/session/index.tsx
+++ b/src/state/session/index.tsx
@@ -1,18 +1,17 @@
-import {AtpPersistSessionHandler, BskyAgent} from '@atproto/api'
+import React from 'react'
+import {BskyAgent, AtpPersistSessionHandler} from '@atproto/api'
 import {useQueryClient} from '@tanstack/react-query'
 import {jwtDecode} from 'jwt-decode'
-import React from 'react'
 
-import {track} from '#/lib/analytics/analytics'
 import {networkRetry} from '#/lib/async/retry'
-import {hasProp} from '#/lib/type-guards'
 import {logger} from '#/logger'
 import * as persisted from '#/state/persisted'
 import {PUBLIC_BSKY_AGENT} from '#/state/queries'
+import {emitSessionDropped} from '../events'
 import {useLoggedOutViewControls} from '#/state/shell/logged-out'
 import {useCloseAllActiveElements} from '#/state/util'
-
-import {emitSessionDropped} from '../events'
+import {track} from '#/lib/analytics/analytics'
+import {hasProp} from '#/lib/type-guards'
 
 let __globalAgent: BskyAgent = PUBLIC_BSKY_AGENT