Skip to content

Commit

Permalink
Remove Extra Slash in URL
Browse files Browse the repository at this point in the history
  • Loading branch information
haideriqbal committed Jan 14, 2025
1 parent 004f8b5 commit fc0d0bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/DefinedResponseFields.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function StaticDocs() {
const [fields, setFields] = useState<DefinedField[]>([]);

useEffect(() => {
fetch(process.env.REACT_APP_APIURL+'/api/v2/defined-fields')
fetch(process.env.REACT_APP_APIURL+'api/v2/defined-fields')
.then((response) => response.json())
.then((data) => setFields(data))
.catch((error) => console.error('Error fetching defined fields:', error));
Expand Down

0 comments on commit fc0d0bc

Please sign in to comment.