Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Main" branch clean-up #12

Merged
merged 14 commits into from
Jan 15, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge branch 'main' into main-cleanup
kpyszkowski committed Jan 11, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit ef5686040b1630d6e0d29b84b9a6f5a044d51a3a
27 changes: 0 additions & 27 deletions src/static/icons/IoHomeOutlineSharp.tsx

This file was deleted.

10 changes: 3 additions & 7 deletions src/store/index.ts
Original file line number Diff line number Diff line change
@@ -44,8 +44,8 @@ const rootReducer: Reducer = (state: RootState, action: AnyAction) => {
TBTC: { ...state.token.TBTC, balance: 0 },
TBTCV2: { ...state.token.TBTCV2, balance: 0 },
},
// we don't display successful login modal when changin account so we are
// setting the isSuccessfulLoginModalClosed flag to true and also
// We don't display successful login modal when changing account so we are
// setting the isSuccessfulLoginModalClosed flag to true.
modal: {
modalQueue: {
isSuccessfulLoginModalClosed: true,
@@ -65,11 +65,7 @@ const store = configureStore({
// Ignore these action types
ignoredActions: ["modal/openModal"],
// Ignore these field paths in all actions
ignoredPaths: [
"modal.props.setBeneficiary",
"modal.props.setAuthorizer",
"modal.props.onSubmit",
],
ignoredPaths: ["modal.props.onSubmit"],
},
}).prepend(listenerMiddleware.middleware),
})
You are viewing a condensed version of this merge commit. You can view the full changes here.