Skip to content

Commit

Permalink
port number was wrong replaced from 3005 to 3000 (#1434)
Browse files Browse the repository at this point in the history
Co-authored-by: chiranjeev kundu <“[email protected]”>
  • Loading branch information
DecodeAndCode and chiranjeev kundu authored Jan 16, 2024
1 parent 5bae8f5 commit 84c6697
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/talawa-admin.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/AddOn/support/services/Plugin.helper.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class PluginHelper {
fetchStore = async (): Promise<any> => {
const result = await fetch(`http://localhost:3005/store`);
const result = await fetch(`http://localhost:3000/store`);
return await result.json();
};

Expand Down

0 comments on commit 84c6697

Please sign in to comment.