Skip to content

Commit

Permalink
win build
Browse files Browse the repository at this point in the history
win build
  • Loading branch information
ceddybi committed Feb 5, 2024
1 parent c81a4ea commit ca06290
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": ".webpack/main",
"homepage": "https://algojobs.ca",
"scripts": {
"start": "APP_DEV=true electron-forge start",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "DEBUG=electron-osx-sign* electron-forge make --arch=x64 --platform",
"publish": "electron-forge publish --arch=x64 --platform",
Expand Down
2 changes: 1 addition & 1 deletion src/app/dashboard/applications.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ interface ApplicationsViewProps {
export const ApplicationsViews = (props: ApplicationsViewProps) => {
const { state, useQuestions, skipped = false } = props;
const [selectedApp, setSelectedApp] = React.useState<Application>(null);
const { completedApps, skippedApps } = state;
const { completedApps = [], skippedApps = [] } = state;

const apps = skipped ? skippedApps : completedApps;

Expand Down
2 changes: 1 addition & 1 deletion src/config/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function getDefaultBrowserPath() {
return `/Applications/Google Chrome.app/Contents/MacOS/Google Chrome`;
}
case "win32": {
return `%ProgramFiles(x86)%\Google\Chrome\Application\chrome.exe`;
return `\/Program Files\/Google\/Chrome\/Application\/chrome.exe`;
}
case "linux": {
return `/usr/bin/google-chrome`;
Expand Down

0 comments on commit ca06290

Please sign in to comment.