Skip to content

Commit

Permalink
Update src/store/createStore.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Iveta <[email protected]>
  • Loading branch information
jeesunikim and quietbits authored Mar 27, 2024
1 parent b6b2b8a commit 98989a5
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions src/store/createStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,21 +84,10 @@ export const createStore = (options: CreateStoreOptions) =>
// Account
account: {
publicKey: "",
generatedMuxedAccountInput: {
id: undefined,
baseAddress: undefined,
},
generatedMuxedAccount: {
id: undefined,
baseAddress: undefined,
muxedAddress: undefined,
},
generatedMuxedAccountInput: undefined,
generatedMuxedAccount: undefined,
parsedMuxedAccountInput: undefined,
parsedMuxedAccount: {
id: undefined,
baseAddress: undefined,
muxedAddress: undefined,
},
parsedMuxedAccount: undefined,
updateGeneratedMuxedAccountInput: (value: Partial<MuxedAccount>) =>
set((state) => {
state.account.generatedMuxedAccountInput = {
Expand Down

0 comments on commit 98989a5

Please sign in to comment.