diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-07 11:45:26 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-07 11:45:26 -0600 |
commit | b4097e25d67739c0ab6bc5b5f6ce8ee062796458 (patch) | |
tree | 5d44e647a689b7df7214eb4824b5f17273034a49 /src/state/index.ts | |
parent | ff9161d8e70fc2e6d066fd045bd2a380c63cb46c (diff) | |
download | voidsky-b4097e25d67739c0ab6bc5b5f6ce8ee062796458.tar.zst |
Reuse service address
Diffstat (limited to 'src/state/index.ts')
-rw-r--r-- | src/state/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/index.ts b/src/state/index.ts index 78c14714f..0716ab592 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -4,8 +4,8 @@ import {RootStoreModel} from './models/root-store' import * as libapi from './lib/api' import * as storage from './lib/storage' +export const DEFAULT_SERVICE = 'http://localhost:2583' const ROOT_STATE_STORAGE_KEY = 'root' -const DEFAULT_SERVICE = 'http://localhost:2583' const STATE_FETCH_INTERVAL = 15e3 export async function setupState() { |