fix some stuff with the timestamp settings

This commit is contained in:
Olivier Gagnon
2022-08-29 16:47:51 -04:00
parent e57fee00d2
commit c88ac1c26e
3 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -1,10 +1,9 @@
import React, { useState } from "react";
import { MenuItem, Select, SelectChangeEvent, TextField, Tooltip, Typography } from "@mui/material";
import { defaultSettings, Settings } from "../../Settings/Settings";
import { Settings } from "../../Settings/Settings";
import { OptionSwitch } from "../../ui/React/OptionSwitch";
import { GameOptionsPage } from "./GameOptionsPage";
import { formatTime } from "../../utils/helpers/formatTime";
import { Box } from "@mui/system";
export const InterfacePage = (): React.ReactElement => {
const [timestampFormat, setTimestampFormat] = useState(Settings.TimestampsFormat);