From 58b9b54600f12ba4ec1d80a2d1b7dee3879a0479 Mon Sep 17 00:00:00 2001 From: adamelmore <2363879+adamdottv@users.noreply.github.com> Date: Mon, 26 Jan 2026 22:58:29 -0600 Subject: feat(app): forward and back buttons --- packages/desktop/src/index.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'packages/desktop/src') diff --git a/packages/desktop/src/index.tsx b/packages/desktop/src/index.tsx index fe9e3f92e..b19adfeda 100644 --- a/packages/desktop/src/index.tsx +++ b/packages/desktop/src/index.tsx @@ -80,6 +80,14 @@ const createPlatform = (password: Accessor): Platform => ({ void shellOpen(url).catch(() => undefined) }, + back() { + window.history.back() + }, + + forward() { + window.history.forward() + }, + storage: (() => { type StoreLike = { get(key: string): Promise -- cgit v1.2.3