Skip to content

Commit d5f30c0

Browse files
committed
Prettier
1 parent ed7ce77 commit d5f30c0

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

refactor/next.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
const nextConfig = {
33
reactStrictMode: true,
44
images: {
5-
domains: ['swewoocommerce.dfweb.no', 'res.cloudinary.com', 'via.placeholder.com'],
5+
domains: [
6+
'swewoocommerce.dfweb.no',
7+
'res.cloudinary.com',
8+
'via.placeholder.com',
9+
],
610
},
711
};
812

refactor/src/components/Input/InputField.component.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ export const InputField = ({
3333
inputName,
3434
type,
3535
}: IInputRootObject) => {
36-
3736
const { register } = useFormContext();
3837

3938
return (

refactor/src/tests/Index/Index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ test.describe('Forside', () => {
66
});
77

88
test('Har h1 innhold på forsiden', async ({ page }) => {
9-
await page.screenshot({ path: "screenshot.png" });
9+
await page.screenshot({ path: 'screenshot.png' });
1010
const h1 = await page.locator('h1');
1111
const count = await h1.count();
1212
await expect(count).toBeGreaterThan(0);

0 commit comments

Comments
 (0)