Skip to content

Commit

Permalink
Merge pull request #49 from dreampipcom/dev
Browse files Browse the repository at this point in the history
r003
  • Loading branch information
angeloreale authored Aug 26, 2024
2 parents 6ad3ef7 + 5984dae commit 5ce3724
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/api/v1/public/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const generateErrorResponse = (e: any, status: number) => {
return {
ok: false,
status,
message: e.message,
message: `${e?.message}`,
};
};

Expand Down
2 changes: 1 addition & 1 deletion src/app/api/v1/user/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const generateErrorResponse = (e: any, status: number) => {
return {
ok: false,
status,
message: e?.message,
message: `${e?.message}`,
};
};

Expand Down

0 comments on commit 5ce3724

Please sign in to comment.