Skip to content

Commit

Permalink
Merge pull request #290 from Rushikesh-Sonawane99/release-1.0.0
Browse files Browse the repository at this point in the history
Issue #PS-000 chore: Updated middleware base url in services
  • Loading branch information
itsvick authored Nov 5, 2024
2 parents f9a06f6 + 9f53302 commit af50c8f
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 af50c8f

Please sign in to comment.