-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
US-1204 RIF Wallet - Create (init) global state loading component (#389)
* chore: improve locked/unlocked behaviour + loading * feat: rn-placeholder while waiting on the balances or prices * fix: useStateSubsription test * chore: remove unused variables * refactor: IUsdPriceState rename * fix: BitcoinCardComponent endless loading * refactor: remove useEffect, space instead of 1 * fix: onScreenLock does not exist error * fix: loop when deleting master key * chore: remove unnecessary navigation to CreateKeysUX Co-authored-by: Alexander Evchenko <[email protected]>
- Loading branch information
1 parent
9b50934
commit dad59be
Showing
27 changed files
with
405 additions
and
305 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
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,8 @@ | ||
import { fonts } from '../../styles/fonts' | ||
import { fonts } from 'src/styles/fonts' | ||
import { CustomText, TextType } from './CustomText' | ||
|
||
const RegularText = ({ children, ...props }: TextType) => ( | ||
export const RegularText = ({ children, ...props }: TextType) => ( | ||
<CustomText font={fonts.regular} {...props}> | ||
{children} | ||
</CustomText> | ||
) | ||
|
||
export default RegularText |
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
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
Oops, something went wrong.