Skip to content

Commit

Permalink
fix: issues on production in host apps
Browse files Browse the repository at this point in the history
  • Loading branch information
mesqueeb committed Jun 4, 2024
1 parent 2e3a6b3 commit 90c7643
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/utils/src/internal/storeSplit.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { isAnyObject } from 'is-what'

export const storeSplitSymbol = Symbol('storeSplit')
/** Using an actual symbol causes issues in production host apps for whatever reason... */
export const storeSplitSymbol = 'MAGNETAR_SYMBOL_storeSplit'

/**
* A storeSplit function allows you to apply a different payload between your cache store vs your other stores.
Expand Down

0 comments on commit 90c7643

Please sign in to comment.