Hi all!
I have this error showing on this script:
<script setup lang="ts">
const { data: rsp } = await useFetch('https://api.weather.gov/gridpoints/TBW/99,103/forecast/hourly')
</script>
<template>
<div>
<li v-for="period in rsp['properties']['periods']">
{{period.temperature}}{{ period.temperatureUnit }}
</li>
</div>
</template>
The code still runs fine. I googled this a bit and it seems it's somethign related to the property not having a defined type, but I'm not entirely sure how to fix it or how to change it.