Skip to content

Commit

Permalink
Issue #PS-000 chore: Updated middleware base url in services
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushikesh-Sonawane99 committed Nov 5, 2024
1 parent f9a06f6 commit 9f53302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/NotificationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const sendCredentialService = async ({
replacements,
email,
}: SendCredentialsRequest): Promise<any> => {
const apiUrl: string = `${process.env.NEXT_PUBLIC_NOTIFICATION_BASE_URL}/notification/send`;
const apiUrl: string = `${process.env.NEXT_PUBLIC_MIDDLEWARE_URL}/notification/send`;
try {
const response = await post(apiUrl, {
isQueue,
Expand Down

0 comments on commit 9f53302

Please sign in to comment.