-
Notifications
You must be signed in to change notification settings - Fork 44
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
Showing
11 changed files
with
47 additions
and
51 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
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
2 changes: 2 additions & 0 deletions
2
.../commonwealth/client/scripts/views/pages/RewardsPage/cards/ReferralCard/ReferralCard.scss
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.ReferralCard { | ||
} |
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
3 changes: 3 additions & 0 deletions
3
packages/commonwealth/client/scripts/views/pages/RewardsPage/cards/ReferralCard/index.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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import ReferralCard from './ReferralCard'; | ||
|
||
export default ReferralCard; |
2 changes: 0 additions & 2 deletions
2
.../commonwealth/client/scripts/views/pages/RewardsPage/cards/RefferalCard/RefferalCard.scss
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
packages/commonwealth/client/scripts/views/pages/RewardsPage/cards/RefferalCard/index.ts
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
packages/commonwealth/client/scripts/views/pages/RewardsPage/cards/index.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,5 +1,5 @@ | ||
import QuestCard from './QuestCard'; | ||
import RefferalCard from './RefferalCard'; | ||
import ReferralCard from './ReferralCard'; | ||
import WalletCard from './WalletCard'; | ||
|
||
export { QuestCard, RefferalCard, WalletCard }; | ||
export { QuestCard, ReferralCard, WalletCard }; |
17 changes: 17 additions & 0 deletions
17
packages/commonwealth/client/scripts/views/pages/RewardsPage/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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export enum MobileTabType { | ||
Referrals = 'Referrals', | ||
WalletBalance = 'Wallet Balance', | ||
Quests = 'Quests', | ||
} | ||
|
||
export enum TableType { | ||
Referrals = 'Referrals', | ||
TokenTXHistory = 'Token TX History', | ||
XPEarnings = 'XP Earnings', | ||
} | ||
|
||
export const enum TabParam { | ||
referrals = 'referrals', | ||
wallet = 'wallet', | ||
quests = 'quests', | ||
} |
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