Skip to content

Commit

Permalink
fix: realt community URL domain
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-maury committed Nov 17, 2024
1 parent fd4ec38 commit 3d81b16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "realt-properties-map-backend",
"version": "1.1.0",
"version": "1.1.1",
"license": "Apache-2.0",
"main": "src/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion backend/src/controllers/properties.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export async function get(req: Request, res: Response, next: NextFunction): Prom
return res.json(cached)
}

const { data: properties } = await axios.get('https://dashboard.realt.community/api/properties')
const { data: properties } = await axios.get('https://dashboard.realtoken.community/api/properties')
cacheService.set(PropertiesCacheKey, properties, cachedTime)
return res.json(properties)
} catch (err) {
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "realt-properties-map-frontend",
"version": "1.5.4",
"version": "1.5.5",
"license": "Apache-2.0",
"scripts": {
"start": "PORT=3010 react-scripts start",
Expand Down

0 comments on commit 3d81b16

Please sign in to comment.