fix datasource

This commit is contained in:
austinkelsay 2024-10-05 19:01:07 -05:00
parent f9a2647d10
commit b5d66e8de3

View File

@ -14,7 +14,7 @@ export const ToastProvider = ({ children }) => {
return (
<ToastContext.Provider value={{ showToast }}>
<Toast ref={toast} />
<Toast ref={toast} style={{ zIndex: 50 }} />
{children}
</ToastContext.Provider>
);