diff --git a/app/soapbox/components/__mocks__/react-inlinesvg.js b/app/soapbox/components/__mocks__/react-inlinesvg.js
index 41000c5cca..b63d1a9677 100644
Binary files a/app/soapbox/components/__mocks__/react-inlinesvg.js and b/app/soapbox/components/__mocks__/react-inlinesvg.js differ
diff --git a/app/soapbox/components/icon.js b/app/soapbox/components/icon.js
index 7c76258062..3a70590614 100644
Binary files a/app/soapbox/components/icon.js and b/app/soapbox/components/icon.js differ
diff --git a/app/soapbox/components/svg_icon.js b/app/soapbox/components/svg_icon.js
index 2e02a1585b..6152f56f20 100644
Binary files a/app/soapbox/components/svg_icon.js and b/app/soapbox/components/svg_icon.js differ
diff --git a/app/soapbox/components/ui/icon/icon.tsx b/app/soapbox/components/ui/icon/icon.tsx
index 340a22a912..fcf1a79dec 100644
--- a/app/soapbox/components/ui/icon/icon.tsx
+++ b/app/soapbox/components/ui/icon/icon.tsx
@@ -8,18 +8,16 @@ interface IIcon {
src: string,
}
-const Icon = ({ src, alt, count, ...filteredProps }: IIcon): JSX.Element => {
- return (
-
- {count ? (
-
- {count}
-
- ) : null}
+const Icon = ({ src, alt, count, ...filteredProps }: IIcon): JSX.Element => (
+
+ {count ? (
+
+ {count}
+
+ ) : null}
-
-
- );
-};
+
+
+);
export default Icon;
diff --git a/app/soapbox/features/verification/steps/__tests__/age-verification.test.js b/app/soapbox/features/verification/steps/__tests__/age-verification.test.js
index c5b6bed7af..122df77bd4 100644
Binary files a/app/soapbox/features/verification/steps/__tests__/age-verification.test.js and b/app/soapbox/features/verification/steps/__tests__/age-verification.test.js differ
diff --git a/app/soapbox/features/verification/steps/__tests__/email-verification.test.js b/app/soapbox/features/verification/steps/__tests__/email-verification.test.js
index 604b8b536c..9e05686b7d 100644
Binary files a/app/soapbox/features/verification/steps/__tests__/email-verification.test.js and b/app/soapbox/features/verification/steps/__tests__/email-verification.test.js differ
diff --git a/app/soapbox/features/verification/steps/__tests__/sms-verification.test.js b/app/soapbox/features/verification/steps/__tests__/sms-verification.test.js
index f6a997e2b1..65ba19528d 100644
Binary files a/app/soapbox/features/verification/steps/__tests__/sms-verification.test.js and b/app/soapbox/features/verification/steps/__tests__/sms-verification.test.js differ
diff --git a/jest.config.js b/jest.config.js
index 0c8d794332..3e7e62a67d 100644
Binary files a/jest.config.js and b/jest.config.js differ