Your TypeFetch data object expects array each time, but if the data is not present or is loading, it could be undefined or null which causes the error. You could try below code by passing data as [] to the Grid component:
<Grid data={fetchData.data ?? []} />