Skip to content

Commit

Permalink
fix: fixed api version fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin.jaroschewski committed Dec 10, 2024
1 parent 3554afb commit 6fa3d15
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/utils/config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* global window */

export const config = window.config;
export const config = {
...window.config,
apiVersion: window.config?.apiVersion || "v5",
};

0 comments on commit 6fa3d15

Please sign in to comment.