Skip to content

Commit

Permalink
chore: set manifest.json to jsonc
Browse files Browse the repository at this point in the history
  • Loading branch information
tmkx committed Jan 23, 2024
1 parent b1680a1 commit bf5d1bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.associations": {
"manifest.json": "jsonc"
}
}
2 changes: 1 addition & 1 deletion apps/ai-assistant/src/hooks/atoms/config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { atomWithStorage } from 'jotai/utils';
import { createStorage } from '@webx-kit/storage';

const chromeStorage = createStorage();
const chromeStorage = createStorage({ prefix: 'config:' });

export const apiKeyAtom = atomWithStorage<string | null>('apiKey', null, chromeStorage);

0 comments on commit bf5d1bf

Please sign in to comment.