Skip to content

Commit 6025d93

Browse files
refactor(frontend): change claim type buttons order (#621)
1 parent e1dfa02 commit 6025d93

File tree

1 file changed

+1
-1
lines changed
  • js/frontend/src/features/swap/components/settings

1 file changed

+1
-1
lines changed

js/frontend/src/features/swap/components/settings/settings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import styles from './settings.module.scss';
88
import { TooltipContent } from './tooltip-content';
99

1010
const CLAIM_TYPE_BUTTONS = [
11-
{ value: CLAIM_TYPE.MANUAL, text: 'Manual', SVG: HandSVG, SVGColorType: 'stroke' as const },
1211
{ value: CLAIM_TYPE.AUTO, text: 'Automatic', SVG: CircleCheckSVG },
12+
{ value: CLAIM_TYPE.MANUAL, text: 'Manual', SVG: HandSVG, SVGColorType: 'stroke' as const },
1313
];
1414

1515
type ClaimType = (typeof CLAIM_TYPE)[keyof typeof CLAIM_TYPE];

0 commit comments

Comments
 (0)