diff --git a/frontend/src/hooks/useOus/index.tsx b/frontend/src/hooks/useOus/index.tsx
index 0109ec3bdf853e2930c2598b5a96155acd89428d..900a6af4d956c0165e534babc91d2468655ee9b6 100644
--- a/frontend/src/hooks/useOus/index.tsx
+++ b/frontend/src/hooks/useOus/index.tsx
@@ -10,7 +10,7 @@ type OuData = {
 function useOus(): OuData[] {
   const [ous, setOus] = useState<OuData[]>([])
   const getOptions = async () => {
-    const response = await fetch('/api/ui/v1/ous/', fetchJsonOpts())
+    const response = await fetch('/api/ui/v1/ous', fetchJsonOpts())
     if (response.ok) {
       const ousJson = await response.json()
       setOus(ousJson)