adds eslint

This commit is contained in:
geoffsee
2025-06-24 17:29:52 -04:00
committed by Geoff Seemueller
parent 9698fc6f3b
commit 02c3253343
169 changed files with 4896 additions and 4804 deletions

View File

@@ -1,13 +1,14 @@
import React, { useEffect } from "react";
import { Stack } from "@chakra-ui/react";
import Chat from "../../components/chat/Chat";
import clientChatStore from "../../stores/ClientChatStore";
import { Stack } from '@chakra-ui/react';
import React, { useEffect } from 'react';
import Chat from '../../components/chat/Chat';
import clientChatStore from '../../stores/ClientChatStore';
// renders "/"
export default function IndexPage() {
useEffect(() => {
try {
const model = localStorage.getItem("recentModel");
const model = localStorage.getItem('recentModel');
clientChatStore.setModel(model as string);
} catch (_) {