Skip to content

Commit 65ae922

Browse files
committed
fix: prettier formatting in component test files
1 parent 14e04e2 commit 65ae922

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

__tests__/components/backup-nudge-banner.spec.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ jest.mock("@rn-vui/themed", () => {
2121
}
2222
return {
2323
makeStyles:
24-
(fn: (theme: { colors: typeof colors }) => Record<string, object>) =>
25-
() =>
24+
(fn: (theme: { colors: typeof colors }) => Record<string, object>) => () =>
2625
fn({ colors }),
2726
Text: ({ children, ...props }: { children: React.ReactNode }) =>
2827
React.createElement("Text", props, children),

__tests__/components/mnemonic-word-input.spec.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ jest.mock("@rn-vui/themed", () => {
1515
}
1616
return {
1717
makeStyles:
18-
(fn: (theme: { colors: typeof colors }) => Record<string, object>) =>
19-
() =>
18+
(fn: (theme: { colors: typeof colors }) => Record<string, object>) => () =>
2019
fn({ colors }),
2120
Text: ({ children, ...props }: { children: React.ReactNode }) =>
2221
React.createElement("Text", props, children),

0 commit comments

Comments
 (0)