Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
SamCarlberg committed Sep 28, 2024
1 parent 5cd262c commit 8259f15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/project/SettingsDialog.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { DialogTitle, DialogContent, Table, TableBody, TableRow, TableCell, Input, Switch, DialogActions, Button } from "@mui/material"
import Dialog from "@mui/material/Dialog"
import React, { useEffect, useState } from "react"
import { Project, Settings, regenerateFiles } from "../../bindings/Project"
import { Project, Settings } from "../../bindings/Project"
import { HelpableLabel } from "../HelpableLabel"

type SettingsDialogProps = {
Expand All @@ -12,7 +12,7 @@ type SettingsDialogProps = {
onCancel: (projectSettings: Settings) => void
}

export default function({ project, visible, allowCancel, onSave, onCancel }: SettingsDialogProps) {
export default function SettingsDialog({ project, visible, allowCancel, onSave, onCancel }: SettingsDialogProps) {
const blankStringRegex = /^[ ]*$/

const [settings, setSettings] = useState({ ...project.settings })
Expand Down

0 comments on commit 8259f15

Please sign in to comment.