We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 657c68d + da74e84 commit 809900bCopy full SHA for 809900b
src/api/getRecipients.js
@@ -1,6 +1,7 @@
1
import { api } from './api';
2
3
export default async function getRecipients() {
4
- const res = await api.get('/13-5/recipients/');
+ const teamId = import.meta.env.VITE_TEAM_ID;
5
+ const res = await api.get(`/${teamId}/recipients/`);
6
return res.data;
7
}
vercel.json
@@ -0,0 +1,3 @@
+{
+ "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }]
+}
0 commit comments