Skip to content

Commit

Permalink
Merge pull request #24036 from blazejkustra/fix/animations-typo
Browse files Browse the repository at this point in the history
Fix wrong lottie animations names
  • Loading branch information
grgia authored Aug 2, 2023
2 parents 530b455 + c18a81b commit 586060e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ReimbursementAccountLoadingIndicator.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function ReimbursementAccountLoadingIndicator(props) {
{props.isSubmittingVerificationsData ? (
<View style={[styles.pageWrapper]}>
<Lottie
source={LottieAnimations.ReviewingBankInfoAnimation}
source={LottieAnimations.ReviewingBankInfo}
autoPlay
loop
style={styles.loadingVBAAnimation}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/EnablePayments/ActivateStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const defaultProps = {

function ActivateStep(props) {
const isGoldWallet = props.userWallet.tierName === CONST.WALLET.TIER_NAME.GOLD;
const animation = isGoldWallet ? LottieAnimations.FireworksAnimation : LottieAnimations.ReviewingBankInfoAnimation;
const animation = isGoldWallet ? LottieAnimations.Fireworks : LottieAnimations.ReviewingBankInfo;
const continueButtonText = props.walletTerms.chatReportID ? props.translate('activateStep.continueToPayment') : props.translate('activateStep.continueToTransfer');

return (
Expand Down

0 comments on commit 586060e

Please sign in to comment.