Skip to content

Commit

Permalink
Remove wizard, wrong ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
timomeh committed Feb 23, 2024
1 parent a9a00af commit b5bf002
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 167 deletions.
103 changes: 0 additions & 103 deletions lib/PortingEmbed/__tests__/wizard.test.tsx

This file was deleted.

63 changes: 0 additions & 63 deletions lib/PortingEmbed/wizard.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion lib/core/subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type FetchSubOptions = {
export async function fetchSubscription(sub: string, opts: FetchSubOptions) {
const res = await fetch(
`https://api.gigs.com/projects/${opts.project}/subscriptions/${sub}`,
{ headers: { authorization: `bearer ${opts.token} ` } },
{ headers: { authorization: `Bearer ${opts.token}` } },
)
const body = await res.json().catch(() => res.text())
assert(
Expand Down

0 comments on commit b5bf002

Please sign in to comment.