Skip to content

Commit 4e7dab0

Browse files
committed
updated screenshotting functionality, max screenshots down to 2, made routes better
1 parent 1da4179 commit 4e7dab0

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

electron/main.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ async function createWindow(): Promise<void> {
232232

233233
const windowSettings: Electron.BrowserWindowConstructorOptions = {
234234
height: 600,
235+
width: 400,
235236
x: state.currentX,
236237
y: 50,
237238
alwaysOnTop: true,
@@ -251,11 +252,12 @@ async function createWindow(): Promise<void> {
251252
backgroundColor: "#00000000",
252253
focusable: true,
253254
skipTaskbar: true,
254-
type: "panel",
255+
type: "normal",
255256
paintWhenInitiallyHidden: true,
256257
titleBarStyle: "hidden",
257-
enableLargerThanScreen: true,
258-
movable: true
258+
enableLargerThanScreen: false,
259+
movable: true,
260+
resizable: true
259261
}
260262

261263
state.mainWindow = new BrowserWindow(windowSettings)

src/_pages/SubscribePage.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,11 @@ export default function SubscribePage({ user }: SubscribePageProps) {
6565
</h2>
6666
<p className="text-gray-400 text-sm mt-2 mb-6">
6767
To continue using Interview Coder, you'll need to subscribe
68-
($40/month)
68+
($60/month)
69+
</p>
70+
<p className="text-gray-500 text-[11px] -mt-4 mb-6 italic">
71+
* Undetectability may not work with some versions of MacOS. See our
72+
help center for more details
6973
</p>
7074

7175
{/* Keyboard Shortcuts */}

0 commit comments

Comments
 (0)