Skip to content

Commit

Permalink
chore: default network id to preview
Browse files Browse the repository at this point in the history
  • Loading branch information
cjkoepke committed Dec 3, 2024
1 parent 456c688 commit 4640f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const IS_LOCAL = !!import.meta.env.VITE_IS_LOCAL;
export const CABINET_KEY = import.meta.env.VITE_CABINET_KEY;
export const NETWORK_ID = Number(import.meta.env.VITE_NETWORK_ID);
export const NETWORK_ID = Number(import.meta.env.VITE_NETWORK_ID || 0);
export const HANDLE_CACHE_KEY = "player-handle-cache";
export const MAX_SPEED = 40;
export const REGIONS = [
Expand Down

0 comments on commit 4640f11

Please sign in to comment.