Skip to content

Commit

Permalink
console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ceddybi committed Feb 4, 2024
1 parent f5e59a2 commit 67b6efe
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aij",
"productName": "AIJ",
"version": "0.0.6",
"version": "0.0.7",
"description": "AI Jobs",
"main": ".webpack/main",
"homepage": "https://algojobs.ca",
Expand Down
4 changes: 2 additions & 2 deletions src/app/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export default function Navbar({ user }: { user: any }) {
const pathname = "";

const signOut = () => {
console.log("sign out");
// console.log("sign out");
};

const signIn = () => {
console.log("sign in");
// console.log("sign in");
};

return (
Expand Down
4 changes: 2 additions & 2 deletions src/app/questions/list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export const useQuestions = (): UseQuestions => {
};

const readQuestion = async (question: QuestionAnswer) => {
console.log("read question", question);
// console.log("read question", question);

const savedRead = await (window as any).api.invoke(
"questions:read",
Expand Down Expand Up @@ -364,7 +364,7 @@ export const ListQuestions = () => {
};

const readQuestion = async (question: QuestionAnswer) => {
console.log("read question", question);
// console.log("read question", question);
if (question.isNew) {
// update BE

Expand Down
2 changes: 1 addition & 1 deletion src/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
import './index.css';
import './app';

console.log('👋 This message is being logged by "renderer.js", included via webpack');
// console.log('👋 This message is being logged by "renderer.js", included via webpack');

0 comments on commit 67b6efe

Please sign in to comment.