Skip to content

Commit

Permalink
feat: code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
wwills2 committed Aug 13, 2024
1 parent 53a96c6 commit 89c3a49
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/renderer/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ function App() {
const [appLoading, setAppLoading] = useState(true);
const { data: configData, isLoading: configFileLoading } = useGetUiConfigQuery();

console.log('$$$$$$', appStore.apiKey);

useEffect(() => {
if (appStore.locale) {
const processTranslationTokens = async () => {
Expand Down
1 change: 0 additions & 1 deletion src/renderer/components/blocks/modals/ConnectModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const ConnectModal: React.FC<ConnectModalProps> = ({ onClose }: ConnectModalProp
const [, setActive] = useUrlHash('connect');

const handleSubmit = async (apiHost: string, apiKey?: string) => {
console.log('*****', apiHost, apiKey);
const response: BaseQueryResult | FetchBaseQueryError | SerializedError = await getHealth({ apiHost, apiKey });

if (!response?.data) {
Expand Down

0 comments on commit 89c3a49

Please sign in to comment.