Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const config: StorybookConfig = {

config.resolve.fallback = {
...config.resolve.fallback,
process: require.resolve('process/browser'),
process: 'process/browser',
};

// START: -------- SVG and PNG Handling --------
Expand Down
2 changes: 1 addition & 1 deletion docs/cache-data-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export const newUserDataKey = 'new-user-data';
export type NewUserDataStore = YourDataType;

export const getNewUserData = async () => {
return getUserData<NewUserDataStore>(newUserDataKey);
return getLocalData<NewUserDataStore>(newUserDataKey);
};
```

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@
"@mui/system": "^7.2.0",
"@noble/secp256k1": "^1.7.2",
"@onflow/fcl": "^1.19.0",
"@onflow/frw-core": "^0.1.1",
"@onflow/frw-data-model": "^0.1.1",
"@onflow/frw-extension-shared": "^0.1.1",
"@onflow/frw-reducers": "^0.1.1",
"@onflow/frw-shared": "^0.1.1",
"@onflow/frw-core": "^0.2.1",
"@onflow/frw-data-model": "^0.2.1",
"@onflow/frw-extension-shared": "^0.2.1",
"@onflow/frw-reducers": "^0.2.1",
"@onflow/frw-shared": "^0.2.1",
"@reown/walletkit": "^1.2.8",
"@trustwallet/wallet-core": "^4.3.6",
"@tsparticles/engine": "^3.8.1",
Expand Down
Loading
Loading