diff options
author | Jaz Volpert <ericvolp12@gmail.com> | 2025-07-30 17:40:42 +0000 |
---|---|---|
committer | Jaz Volpert <ericvolp12@gmail.com> | 2025-07-30 17:40:42 +0000 |
commit | 13499de325314804d2564c70f0392191d15f0680 (patch) | |
tree | f73c691d15ddc90663accf1cb0b6f50084b15770 /src/state/session/logging.ts | |
parent | 2d23d821d395dd81691f7a1590800e122b59e3c6 (diff) | |
parent | d4b23d3ab4e8448321fecc7bd46b6531ada80348 (diff) | |
download | voidsky-13499de325314804d2564c70f0392191d15f0680.tar.zst |
Merge branch 'main' into go-124
Diffstat (limited to 'src/state/session/logging.ts')
-rw-r--r-- | src/state/session/logging.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/state/session/logging.ts b/src/state/session/logging.ts index 98de5a396..bf847f08f 100644 --- a/src/state/session/logging.ts +++ b/src/state/session/logging.ts @@ -1,11 +1,11 @@ -import {AtpSessionData, AtpSessionEvent} from '@atproto/api' +import {type AtpSessionData, type AtpSessionEvent} from '@atproto/api' import {sha256} from 'js-sha256' import {Statsig} from 'statsig-react-native-expo' -import {IS_INTERNAL} from '#/lib/app-info' -import {Schema} from '../persisted' -import {Action, State} from './reducer' -import {SessionAccount} from './types' +import {IS_INTERNAL} from '#/env' +import {type Schema} from '../persisted' +import {type Action, type State} from './reducer' +import {type SessionAccount} from './types' type Reducer = (state: State, action: Action) => State |