-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(feedback): address various comments, add and update unit tests
- Loading branch information
1 parent
a9b8275
commit 3d13811
Showing
22 changed files
with
839 additions
and
499 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
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
13 changes: 6 additions & 7 deletions
13
app/components/UI/Stake/Views/StakeEarningsHistoryView/StakeEarningsHistoryView.types.ts
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,10 +1,9 @@ | ||
import { RouteProp } from '@react-navigation/native'; | ||
import { TokenI } from '../../../Tokens/types'; | ||
|
||
interface StakeEarningsHistoryViewRouteParams { | ||
asset: TokenI | ||
} | ||
|
||
export interface StakeEarningsHistoryViewProps { | ||
route: RouteProp<{ params: StakeEarningsHistoryViewRouteParams }, 'params'>; | ||
export interface StakeEarningsHistoryViewRouteParams { | ||
key: string; | ||
name: string; | ||
params: { | ||
asset: TokenI; | ||
}; | ||
} |
Oops, something went wrong.