From 84c66972890941562c2bab3dd393a4d32a296271 Mon Sep 17 00:00:00 2001 From: Chiranjeev Kumar Date: Tue, 16 Jan 2024 22:26:36 +0530 Subject: [PATCH] port number was wrong replaced from 3005 to 3000 (#1434) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: chiranjeev kundu <“chiranjeevkundu2000@gmail.com”> --- .idea/.gitignore | 5 +++++ .idea/inspectionProfiles/Project_Default.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/talawa-admin.iml | 12 ++++++++++++ .idea/vcs.xml | 6 ++++++ .../AddOn/support/services/Plugin.helper.ts | 2 +- 6 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/talawa-admin.iml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000000..b58b603fea --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000000..03d9549ea8 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000000..120e01d8b4 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/talawa-admin.iml b/.idea/talawa-admin.iml new file mode 100644 index 0000000000..24643cc374 --- /dev/null +++ b/.idea/talawa-admin.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000000..35eb1ddfbb --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/components/AddOn/support/services/Plugin.helper.ts b/src/components/AddOn/support/services/Plugin.helper.ts index 358d4b3d7f..dfbbfd50e1 100644 --- a/src/components/AddOn/support/services/Plugin.helper.ts +++ b/src/components/AddOn/support/services/Plugin.helper.ts @@ -1,6 +1,6 @@ class PluginHelper { fetchStore = async (): Promise => { - const result = await fetch(`http://localhost:3005/store`); + const result = await fetch(`http://localhost:3000/store`); return await result.json(); };