Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
100xdevs committed Aug 29, 2023
1 parent 61cb094 commit 45dd4d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/express-backend/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { UserInput } from "common"
app.get('/', (req: any, res: any) => {
let parsedUser = UserInput.safeParse(req.body);
if (!parsedUser.success) {
res.send('Incorrect input2!')
res.send('Incorrect input for harkirat!')
return;
}
res.send('correct input!')
Expand Down

0 comments on commit 45dd4d5

Please sign in to comment.