Skip to content

Commit

Permalink
fix: request success message
Browse files Browse the repository at this point in the history
  • Loading branch information
kirklin committed Oct 17, 2023
1 parent db5ccce commit 51dea2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/admin/src/AppConfiguration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ function initializeHttpRequest() {
if (mode === "message") {
_message.success(message);
} else if (mode === "dialog") {
dialog.success({ title: "Error", content: message });
dialog.success({ title: "Success", content: message });
} else if (mode === "notification") {
notification.success({ title: "Error", content: message });
notification.success({ title: "Success", content: message });
} else if (mode === undefined || mode === "none") {
logger.info(`HttpRequestEngine SuccessHandler: ${message}`);
}
Expand Down

2 comments on commit 51dea2e

@vercel
Copy link

@vercel vercel bot commented on 51dea2e Oct 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

celeris-web – ./apps/admin

celeris-web-git-master-kirklin.vercel.app
celeris-web-kirklin.vercel.app
celeris-web.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 51dea2e Oct 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

celeris-web-api – ./services/admin

celeris-web-api-git-master-kirklin.vercel.app
celeris-web-api-kirklin.vercel.app
celeris-web-api.vercel.app

Please sign in to comment.