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.
1 parent bd6ab7b commit b17adc3Copy full SHA for b17adc3
frontend/components/Users.jsx
@@ -11,6 +11,7 @@ export const Users = ()=>{
11
12
13
useEffect(()=>{
14
+ const API_URL = import.meta.env.VITE_BACKEND_URL;
15
axios.get(`${API_URL}/api/v1/user/find?filter=` + filter)
16
.then(response=>{
17
setusers(response.data.user)
0 commit comments