Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
BryceAltman committed Feb 9, 2024
1 parent ffba9e6 commit 4b92343
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/CurrencySymbolButton.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import React from 'react';
import useLocalize from '@hooks/useLocalize';
import useTheme from '@hooks/useTheme';
import useThemeStyles from '@hooks/useThemeStyles';
import CONST from '@src/CONST';
import useTheme from '@hooks/useTheme';
import Icon from './Icon';
import * as Expensicons from './Icon/Expensicons';
import PressableWithoutFeedback from './Pressable/PressableWithoutFeedback';
import Text from './Text';
import Tooltip from './Tooltip';
import Icon from './Icon';
import * as Expensicons from './Icon/Expensicons';

type CurrencySymbolButtonProps = {
/** Currency symbol of selected currency */
Expand All @@ -17,8 +17,8 @@ type CurrencySymbolButtonProps = {
onCurrencyButtonPress: () => void;
};

function CurrencySymbolButton({ onCurrencyButtonPress, currencySymbol }: CurrencySymbolButtonProps) {
const { translate } = useLocalize();
function CurrencySymbolButton({onCurrencyButtonPress, currencySymbol}: CurrencySymbolButtonProps) {
const {translate} = useLocalize();
const styles = useThemeStyles();
const theme = useTheme();
return (
Expand Down

0 comments on commit 4b92343

Please sign in to comment.