mark todo

This commit is contained in:
m5r 2023-04-29 07:43:19 +02:00
parent bace157921
commit 77e2ca5640

View File

@ -3,7 +3,7 @@ type ResponseObject = {
message: string;
};
// use case: prevent making phone calls / queue messages when offline
// use case: prevent making phone calls / queue messages when offline -- TODO
export async function checkConnectivity(online: () => void, offline: () => void): Promise<ResponseObject> {
try {
if (navigator.onLine) {