Skip to content

Commit f38fa54

Browse files
committed
🎨 Fix code formatting
1 parent 144fe81 commit f38fa54

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ export default {
33
tailwindcss: {},
44
autoprefixer: {},
55
},
6-
};
6+
};

src/app/features/TimeEntries/store/fixtures.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ export const timeEntriesFixture: EntityState<TimeEntry, string> = {
105105
},
106106
};
107107

108-
export const settingsFixture: SettingsState = settingsInitialState;
108+
export const settingsFixture: SettingsState = settingsInitialState;

src/globals.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
declare module '*.css';
1+
declare module "*.css";

vite.config.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
import { defineConfig } from 'vite';
2-
import react from '@vitejs/plugin-react';
1+
import { defineConfig } from "vite";
2+
import react from "@vitejs/plugin-react";
33

44
// https://vitejs.dev/config/
55
export default defineConfig({
66
plugins: [react()],
7-
resolve: {
8-
alias: {
9-
'@': '/src', // Optional: Adjust if you want to use `@` as an alias for `src`
10-
},
11-
},
127
});

0 commit comments

Comments
 (0)