We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56ae22c commit d54cd86Copy full SHA for d54cd86
1 file changed
src/components/PropertyDetails.jsx
@@ -9,7 +9,7 @@ const PropertyDetails = () => {
9
const [property, setProperty] = useState(null);
10
11
useEffect(() => {
12
- fetch("/properties(1).json")
+ fetch("./properties(1).json")
13
.then(res => res.json())
14
.then(data => {
15
const found = data.properties.find(p => p.id === id);
0 commit comments