Skip to content

Commit

Permalink
fix: invalid PB URL variable
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Goniszewski <robertgoniszewski@outlook.com>
  • Loading branch information
goniszewski committed Mar 28, 2024
1 parent 3f0b683 commit bf99cd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/pb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import config from './config';
import type { RecordModel } from 'pocketbase';
import type { User } from './types/User.type';
import type { UserSettings } from './types/UserSettings.type';
export const pb = new PocketBase(config.BACKEND_URL);
export const pb = new PocketBase(config.POCKETBASE_URL);

export const user = writable(
pb.authStore as BaseAuthStore & {
Expand Down

0 comments on commit bf99cd3

Please sign in to comment.