Skip to content

Commit

Permalink
bump version and remove unuse imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenya-DK committed Apr 3, 2024
1 parent 4391e44 commit f67e64d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "quantframe-react",
"private": true,
"version": "1.0.1",
"version": "1.0.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "Quantframe",
"version": "1.0.1"
"version": "1.0.2"
},
"tauri": {
"systemTray": {
Expand Down
3 changes: 0 additions & 3 deletions src/contexts/chat.context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { createContext, useContext, useEffect, useState } from "react";
import { Wfm } from '$types/index';
import { OnSocketEvent, OnTauriUpdateDataEvent } from "../utils";
import api from "@api/index";
import { useAppContext, useAuthContext } from ".";



Expand All @@ -25,8 +24,6 @@ export const ChatContext = createContext<ChatContextProps>({
export const useChatContext = () => useContext(ChatContext);

export const ChatContextProvider = ({ children }: ChatContextProviderProps) => {
const { user } = useAuthContext();
const { settings } = useAppContext();
const [state, setState] = useState<{
aktive_chat: Wfm.ChatData | undefined,
chats: Wfm.ChatData[]
Expand Down
4 changes: 0 additions & 4 deletions src/pages/debug/logging/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import { Card, MultiSelect } from "@mantine/core";
import { useLocalStorage } from "@mantine/hooks";

export const Logging = () => {
const [dbPath, setDbPath] = useLocalStorage<string>({ key: "dbPath", defaultValue: "" });
const [type, setType] = useLocalStorage<string>({ key: "type", defaultValue: "" });

return (
<Card>
<MultiSelect
Expand Down

0 comments on commit f67e64d

Please sign in to comment.