-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Melisa Anabella Rossi
authored
Mar 27, 2024
1 parent
62b1d20
commit a88a203
Showing
7 changed files
with
1,013 additions
and
834 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,14 @@ jobs: | |
audit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@main | ||
- uses: actions/checkout@master | ||
- name: Use Node.js 18.x | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 18.x | ||
cache: 'npm' | ||
- name: Upgrade npm | ||
run: npm i -g npm | ||
- name: Install | ||
run: npm ci --legacy-peer-deps | ||
- name: Audit signatures | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
import { Dispatch } from '@reduxjs/toolkit' | ||
import { AuthIdentity } from '@dcl/crypto' | ||
import { NavbarProps } from 'decentraland-dapps/dist/containers/Navbar/Navbar.types' | ||
import { OpenModalAction } from 'decentraland-dapps/dist/modules/modal/actions' | ||
import { LoginRequestAction } from '../../modules/identity/action' | ||
|
||
export type Props = Partial<NavbarProps> & { | ||
hasActivity: boolean | ||
isConnected: boolean | ||
identity?: AuthIdentity | ||
} | ||
|
||
export type MapStateProps = Pick<Props, 'hasActivity' | 'isConnected'> | ||
export type MapStateProps = Pick<Props, 'hasActivity' | 'isConnected' | 'identity'> | ||
export type MapDispatch = Dispatch<OpenModalAction | LoginRequestAction> |