ai-agent-app / design-system /src /utils /offlineSync.js
MinhTai's picture
deploy: 66c22b0
1576c24
Raw
History Blame Contribute Delete
188 Bytes
const QUEUE_KEY = 'offline-history-queue'
export function getPendingCount() {
try {
return JSON.parse(localStorage.getItem(QUEUE_KEY) ?? '[]').length
} catch {
return 0
}
}