Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client

fix type error (#8722)

authored by hailey.at and committed by

GitHub 4d210e33 15abdc67

+3
+3
src/lib/hooks/useOTAUpdates.ts
··· 69 69 const {currentlyRunning} = useUpdates() 70 70 const [pending, setPending] = React.useState(false) 71 71 const currentChannel = currentlyRunning?.channel 72 + const isCurrentlyRunningPullRequestDeployment = 73 + currentChannel?.startsWith('pull-request') 72 74 73 75 const tryApplyUpdate = async (channel: string) => { 74 76 setPending(true) ··· 113 115 return { 114 116 tryApplyUpdate, 115 117 revertToEmbedded, 118 + isCurrentlyRunningPullRequestDeployment, 116 119 currentChannel, 117 120 pending, 118 121 }