Bug Description
When using the main "Import Bookmarks" button on x.com/i/bookmarks, tweets are always saved to the hardcoded sm_project_twitter_bookmarks container tag instead of the default project selected in the extension popup.
Steps to Reproduce
- Open extension popup and select a custom project (e.g., "X Bookmarks")
- Go to https://x.com/i/bookmarks
- Click the "Import Bookmarks" button
- Check the API call to
/v3/documents/batch
Expected Behavior
Tweets should save to the selected default project's containerTag
Actual Behavior
Tweets always save to containerTags: ["sm_project_twitter_bookmarks"]
Root Cause
twitter.ts line 59 doesn't pass selectedProject parameter when calling BATCH_IMPORT_ALL, causing the importer to always use the fallback value.
Note
Folder imports work correctly because they do pass the selectedProject parameter.

Bug Description
When using the main "Import Bookmarks" button on x.com/i/bookmarks, tweets are always saved to the hardcoded
sm_project_twitter_bookmarkscontainer tag instead of the default project selected in the extension popup.Steps to Reproduce
/v3/documents/batchExpected Behavior
Tweets should save to the selected default project's containerTag
Actual Behavior
Tweets always save to
containerTags: ["sm_project_twitter_bookmarks"]Root Cause
twitter.tsline 59 doesn't passselectedProjectparameter when callingBATCH_IMPORT_ALL, causing the importer to always use the fallback value.Note
Folder imports work correctly because they do pass the
selectedProjectparameter.