Skip to content

Commit

Permalink
linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Aug 17, 2024
1 parent b4919d8 commit cc8339c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thallium-frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import * as child from "child_process";

const commitHash = child.execSync('git rev-parse --short HEAD')
.toString().replace(/\n$/, '');
const commitHash = child.execSync("git rev-parse --short HEAD")
.toString().replace(/\n$/, "");

// https://vitejs.dev/config/
export default defineConfig({
Expand Down

0 comments on commit cc8339c

Please sign in to comment.