Skip to content

Commit

Permalink
🐛 Comment out application handler for now (konveyor#1327)
Browse files Browse the repository at this point in the history
- Comment out application fetch stub. This handler is breaking
application fetch on main currently. Need to wire up full MSW mocks for
applications before uncommenting this.

Signed-off-by: ibolton336 <[email protected]>
  • Loading branch information
ibolton336 authored Sep 1, 2023
1 parent e041fe3 commit 4ad632d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/mocks/stub-new-work/applications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ export const mockApplicationArray: Application[] = [
];

export const handlers = [
rest.get(AppRest.APPLICATIONS, (req, res, ctx) => {
return res(ctx.json(mockApplicationArray));
}),
// rest.get(AppRest.APPLICATIONS, (req, res, ctx) => {
// return res(ctx.json(mockApplicationArray));
// }),
];

export default handlers;

0 comments on commit 4ad632d

Please sign in to comment.