Skip to content

Commit

Permalink
Merge branch 'release-1.0.37' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
entrotech committed Jan 12, 2021
2 parents 092d0fe + 24e9a5a commit acc31d6
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "food-oasis-client",
"description": "React Client for Food Oasis",
"version": "1.0.36",
"version": "1.0.37",
"author": "Hack for LA",
"license": "GPL-2.0",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion client/src/services/account-service.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "./axios-instance";
import axios from "axios";

const baseUrl = "/api/accounts";

Expand Down
2 changes: 1 addition & 1 deletion client/src/services/category-service.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "./axios-instance";
import axios from "axios";

const baseUrl = "/api/categories";

Expand Down
2 changes: 1 addition & 1 deletion client/src/services/esri_service.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "./axios-instance";
import axios from "axios";
const baseUrl = "/api/esri";

// This geocoder api is deprecated for the Food Oasis App,
Expand Down
2 changes: 1 addition & 1 deletion client/src/services/faq-service.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "./axios-instance";
import axios from "axios";

const baseUrl = "/api/faqs";

Expand Down
2 changes: 1 addition & 1 deletion client/src/services/neighborhood-service.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "./axios-instance";
import axios from "axios";

const baseUrl = "/api/neighborhoods";

Expand Down
2 changes: 1 addition & 1 deletion client/src/services/stakeholder-best-service.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "./axios-instance";
import axios from "axios";
import moment from "moment";
import { tenantId } from "helpers/Configuration";

Expand Down
2 changes: 1 addition & 1 deletion client/src/services/stakeholder-service.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "./axios-instance";
import axios from "axios";
import moment from "moment";
import fileDownload from "js-file-download";
import { tenantId } from "helpers/Configuration";
Expand Down
2 changes: 1 addition & 1 deletion client/src/services/suggestion-service.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "./axios-instance";
import axios from "axios";

const baseUrl = "/api/suggestions";

Expand Down
2 changes: 1 addition & 1 deletion client/src/services/tenant-service.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import axios from "./axios-instance";
import axios from "axios";

const baseUrl = "/api/tenants";

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "foodoasis",
"version": "1.0.36",
"version": "1.0.37",
"author": "Hack for LA",
"description": "Web API Server for Food Oasis",
"main": "server.js",
Expand Down

0 comments on commit acc31d6

Please sign in to comment.