chore: remove console.log

This commit is contained in:
Maël Gangloff 2024-07-28 01:08:06 +02:00
parent 7e30950fed
commit 05baaf911f
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629

View File

@ -7,7 +7,6 @@ export default function TextPage({resource}: { resource: string }) {
const [markdown, setMarkdown] = useState<string>()
useEffect(() => {
console.log('heyyy')
axios.get('/content/' + resource).then(res => setMarkdown(res.data))
}, [resource])