Skip to content

Commit

Permalink
Merge pull request #10 from SkywardAI/improve
Browse files Browse the repository at this point in the history
change font so it performs better
  • Loading branch information
Aisuko authored Jul 5, 2024
2 parents f00a422 + c7b584e commit e0136b4
Show file tree
Hide file tree
Showing 6 changed files with 1,825 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
2 changes: 1 addition & 1 deletion components/chat-page/history.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { componetDismount:historyDismount, componentReMount: historyRemount } = u
})

const {
selectConversation, getCurrentConversation,
selectConversation,
componetDismount:conversationDismount, componentReMount: conversationRemount
} = useConversation(c=>{
if(c.id === null || c.id === last_selected_id) return;
Expand Down
21 changes: 21 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import * as babelParser from "@babel/eslint-parser"


export default [
{languageOptions: { globals: globals.browser }},
pluginJs.configs.recommended,
{
languageOptions: {
parser: babelParser,
parserOptions: {
requireConfigFile: false,
babelOptions: {
babelrc: false,
configFile: false,
}
}
}
}
];
Loading

0 comments on commit e0136b4

Please sign in to comment.