about summary refs log tree commit diff
path: root/src/lib/hooks/useOTAUpdates.web.ts
blob: 2783a04dd1ddea1db122b559712c56c57b989008 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export function useOTAUpdates() {}
export function useApplyPullRequestOTAUpdate() {
  return {
    tryApplyUpdate: () => {},
    revertToEmbedded: () => {},
    isCurrentlyRunningPullRequestDeployment: false,
    currentChannel: 'web-build',
    pending: false,
  }
}