about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorhailey <me@haileyok.com>2025-07-25 12:39:43 -0700
committerGitHub <noreply@github.com>2025-07-25 12:39:43 -0700
commit810918b4348015399c88497415876ddd046a31f7 (patch)
tree3d369cfe410c000433ad752f4614f5db6ee48ca5 /src
parent4d210e33cfac8c17fb2b066438df52a4589ab98a (diff)
downloadvoidsky-810918b4348015399c88497415876ddd046a31f7.tar.zst
add web hook, action tweaks (#8723)
Diffstat (limited to 'src')
-rw-r--r--src/lib/hooks/useOTAUpdates.web.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/hooks/useOTAUpdates.web.ts b/src/lib/hooks/useOTAUpdates.web.ts
index 1baf4894e..2783a04dd 100644
--- a/src/lib/hooks/useOTAUpdates.web.ts
+++ b/src/lib/hooks/useOTAUpdates.web.ts
@@ -1 +1,10 @@
 export function useOTAUpdates() {}
+export function useApplyPullRequestOTAUpdate() {
+  return {
+    tryApplyUpdate: () => {},
+    revertToEmbedded: () => {},
+    isCurrentlyRunningPullRequestDeployment: false,
+    currentChannel: 'web-build',
+    pending: false,
+  }
+}