Skip to content

Commit

Permalink
fixing failed deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
mimiMonads committed Oct 24, 2024
1 parent 81dd0fd commit fde7408
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/composer/branch/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export default (o?: specialOptions) =>
? ((a) =>
(k: (arg0: any) => any) =>
(r: Request) =>
async (b: unknown) => k(await a(r)(b)))(composed)(x.f)
async (b: unknown) => k(await a(r)(b)))(composed)(p.f)
: ((a) => (k: (arg0: any) => any) => (r: Request) => (b: unknown) =>
k(a(r)(b)))(composed)(p.f)
)(
aComposer(o ? { ...o, branch: false } : { branch: false })(x)(
aComposer(o ? { ...o, branch: false } : { branch: false })(p)(
tools.isUsing(o)(p),
),
),
Expand Down

0 comments on commit fde7408

Please sign in to comment.