aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/import-export/index.ts (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-12-08fix: check import quota before importing bookmarks (#2232)Mohamed Bassem1-0/+1
* feat: check import quota before importing bookmarks Add quota validation before bookmark import to prevent users from exceeding their bookmark limits. The implementation includes: - New QuotaService.canImportBookmarks() method to check if user can import N bookmarks - New tRPC checkImportQuota procedure for client-side quota validation - Updated useBookmarkImport hook to parse files and check quota before import - Added error banner in ImportExport component to display quota errors - Optimized file parsing to avoid reading the file twice The quota check displays remaining bookmarks and provides clear error messages when the import would exceed the user's quota. * fix * some fixes --------- Co-authored-by: Claude <noreply@anthropic.com>
2025-08-30fix: handle list with slashes in their names and truncate long list names. ↵Mohamed Bassem1-0/+3
fixes #1597