We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 374a8c0 commit 4146447Copy full SHA for 4146447
1 file changed
packages/workshop-app/app/components/update-repo.tsx
@@ -8,12 +8,7 @@ export function UpdateToast({
8
}: {
9
repoUpdates: Awaited<ReturnType<typeof checkForUpdatesCached>>
10
}) {
11
- // const { updatesAvailable, diffLink, remoteCommit } = repoUpdates
12
- // FIXME: mock data
13
- const updatesAvailable = true
14
- const diffLink =
15
- 'https://github.com/epic-web/workshop-app/compare/main...update'
16
- const remoteCommit = '1234567890'
+ const { updatesAvailable, diffLink, remoteCommit } = repoUpdates
17
18
// Track the in-progress toast id and update notification id
19
const inProgressToastId = useRef<ReturnType<typeof toast.loading> | null>(
0 commit comments