Open imclint21 opened 5 months ago
Hi,
I open a dialog using confirmAlert and inside my DialogCreate I have an SWR hook, but it's never called, weird.
confirmAlert
DialogCreate
Something that I need to know?
onClick={() => confirmAlert({ customUI: ({ onClose }) => <DialogCreate onClose={onClose}/> })}
Regards
Update:
After setting the fetcher it works:
const fetcher = url => axios.get(url).then(res => res.data);
I guess its a problem with the scope of SWRConfig
Hi,
I open a dialog using
confirmAlert
and inside myDialogCreate
I have an SWR hook, but it's never called, weird.Something that I need to know?
Regards