Skip to content

Commit

Permalink
Merge pull request #32270 from margelo/@chrispader/fix-wrong-money-re…
Browse files Browse the repository at this point in the history
…quest-button-color

[CP Staging] Fix: Money request button color is wrong

(cherry picked from commit ec88941)
  • Loading branch information
mountiny authored and OSBotify committed Nov 30, 2023
1 parent eab7436 commit ef63668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TabSelector/TabSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function TabSelector({state, navigation, onTabPress, position}) {
{_.map(state.routes, (route, index) => {
const activeOpacity = getOpacity(position, state.routes.length, index, true, affectedAnimatedTabs);
const inactiveOpacity = getOpacity(position, state.routes.length, index, false, affectedAnimatedTabs);
const backgroundColor = getBackgroundColor(position, state.routes.length, index, affectedAnimatedTabs);
const backgroundColor = getBackgroundColor(state.routes.length, index, affectedAnimatedTabs);
const isFocused = index === state.index;
const {icon, title} = getIconAndTitle(route.name, translate);

Expand Down

0 comments on commit ef63668

Please sign in to comment.