Skip to content

Commit

Permalink
fix: current token should be present in all tokens when migrating fro…
Browse files Browse the repository at this point in the history
…m schema 6 to 7

Signed-off-by: Prakhar Agarwal <[email protected]>
  • Loading branch information
Prakhar-Agarwal-byte committed Jun 15, 2024
1 parent 6f2d81b commit fdef85f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/store/persistent-state/state-migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const migrate6ToCurrent = (state: PersistentState_6): Promise<PersistentState> =
return migrate7ToCurrent({
...state,
schemaVersion: 7,
galoyAllAuthTokens: [],
galoyAllAuthTokens: [state.galoyAuthToken],
})
}

Expand Down

0 comments on commit fdef85f

Please sign in to comment.