Skip to content

Commit

Permalink
dir fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sindrir committed Dec 20, 2024
1 parent 7b3e7cd commit 99f76f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tauri-store/setting-store.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { load, Store } from '@tauri-apps/plugin-store';
import { AuthenticationResponse } from '../model/authentication-response.ts';
import { documentDir, sep } from '@tauri-apps/api/path';
import {load, Store} from '@tauri-apps/plugin-store';
import {AuthenticationResponse} from '../model/authentication-response.ts';
import {documentDir, sep} from '@tauri-apps/api/path';

const defaultScannerPath = documentDir() + sep() + 'trokk' + sep() + 'files';
const defaultScannerPath = await documentDir() + sep() + 'trokk' + sep() + 'files';

class SettingStore {
private static instance: SettingStore;
Expand Down

0 comments on commit 99f76f6

Please sign in to comment.