Skip to content

Commit

Permalink
Merge pull request #39374 from ikevin127/fix/38347
Browse files Browse the repository at this point in the history
Android - Sign-in page flickers after using autofill
  • Loading branch information
roryabraham authored Apr 10, 2024
2 parents 3257088 + 539cb87 commit d990036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Lottie/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function Lottie({source, webStyle, ...props}: Props, ref: ForwardedRef<LottieVie
// using the fallback in case of a Lottie error or appState.isBackground to prevent
// memory leak, see issue: https://github.com/Expensify/App/issues/36645
if (isError || appState.isBackground) {
return <View style={aspectRatioStyle} />;
return <View style={[aspectRatioStyle, props.style]} />;
}

return (
Expand Down

0 comments on commit d990036

Please sign in to comment.