update fetch URL

This commit is contained in:
Johannes
2023-08-02 10:47:26 +02:00
parent a5c33981a0
commit 42e6601f13

View File

@@ -7,7 +7,7 @@ export default function OSSFriendsPage() {
const [OSSFriends, setOSSFriends] = useState([]);
useEffect(() => {
fetch("http://localhost:3001/api/oss-friends")
fetch("https://formbricks.com/api/oss-friends")
.then((response) => response.json())
.then((data) => setOSSFriends(data.data));
}, []);