diff --git a/apps/mobile/src/components/ui/image/ImageContextMenu.tsx b/apps/mobile/src/components/ui/image/ImageContextMenu.tsx index ed1f6475f..df843ceb1 100644 --- a/apps/mobile/src/components/ui/image/ImageContextMenu.tsx +++ b/apps/mobile/src/components/ui/image/ImageContextMenu.tsx @@ -109,14 +109,14 @@ export const ImageContextMenu = ({ imageUrl, entryId, children }: ImageContextMe onSelect={() => { if (isEntryStarred) { collectionSyncService.unstarEntry(entryId) - toast.info("Unstarred") + toast.success("Unstarred") } else { collectionSyncService.starEntry({ feedId, entryId, view, }) - toast.info("Starred") + toast.success("Starred") } }} > diff --git a/apps/mobile/src/modules/context-menu/entry.tsx b/apps/mobile/src/modules/context-menu/entry.tsx index 9e61ff0fd..f4ed49586 100644 --- a/apps/mobile/src/modules/context-menu/entry.tsx +++ b/apps/mobile/src/modules/context-menu/entry.tsx @@ -81,14 +81,14 @@ export const EntryItemContextMenu = ({ id, children }: PropsWithChildren<{ id: s onSelect={() => { if (isEntryStarred) { collectionSyncService.unstarEntry(id) - toast.info("Unstarred") + toast.success("Unstarred") } else { collectionSyncService.starEntry({ feedId, entryId: id, view, }) - toast.info("Starred") + toast.success("Starred") } }} > diff --git a/apps/mobile/src/modules/context-menu/feeds.tsx b/apps/mobile/src/modules/context-menu/feeds.tsx index 24ff7fbd4..c7e997c42 100644 --- a/apps/mobile/src/modules/context-menu/feeds.tsx +++ b/apps/mobile/src/modules/context-menu/feeds.tsx @@ -148,7 +148,7 @@ export const SubscriptionFeedItemContextMenu: FC< const feed = getFeed(subscription.feedId) if (!feed) return Clipboard.setString(feed.url) - toast.info("Link copied to clipboard") + toast.success("Link copied to clipboard") return } } diff --git a/apps/mobile/src/modules/context-menu/lists.tsx b/apps/mobile/src/modules/context-menu/lists.tsx index dda5efd64..98bdba536 100644 --- a/apps/mobile/src/modules/context-menu/lists.tsx +++ b/apps/mobile/src/modules/context-menu/lists.tsx @@ -32,7 +32,7 @@ export const SubscriptionListItemContextMenu: FC< onSelect: () => { const list = getList(id) if (!list) return - toast.info("Link copied to clipboard") + toast.success("Link copied to clipboard") Clipboard.setString(`${env.VITE_WEB_URL}/share/lists/${list.id}`) }, }, diff --git a/apps/mobile/src/modules/context-menu/video.tsx b/apps/mobile/src/modules/context-menu/video.tsx index cfbad90b8..3cea873ad 100644 --- a/apps/mobile/src/modules/context-menu/video.tsx +++ b/apps/mobile/src/modules/context-menu/video.tsx @@ -53,14 +53,14 @@ export const VideoContextMenu = ({ entryId, children }: VideoContextMenuProps) = onSelect={() => { if (isEntryStarred) { collectionSyncService.unstarEntry(entryId) - toast.info("Unstarred") + toast.success("Unstarred") } else { collectionSyncService.starEntry({ feedId, entryId, view, }) - toast.info("Starred") + toast.success("Starred") } }} > diff --git a/apps/mobile/src/modules/discover/RecommendationListItem.tsx b/apps/mobile/src/modules/discover/RecommendationListItem.tsx index f68858f02..b075f9e67 100644 --- a/apps/mobile/src/modules/discover/RecommendationListItem.tsx +++ b/apps/mobile/src/modules/discover/RecommendationListItem.tsx @@ -81,7 +81,7 @@ export const RecommendationListItem: FC<{ key="copyMaintainerName" onSelect={() => { Clipboard.setString(m) - toast.info("Name copied to clipboard") + toast.success("Name copied to clipboard") }} > Copy Maintainer Name diff --git a/apps/mobile/src/modules/entry-content/EntryContentHeaderRightActions.tsx b/apps/mobile/src/modules/entry-content/EntryContentHeaderRightActions.tsx index 7fe279fd0..5a69506fc 100644 --- a/apps/mobile/src/modules/entry-content/EntryContentHeaderRightActions.tsx +++ b/apps/mobile/src/modules/entry-content/EntryContentHeaderRightActions.tsx @@ -137,7 +137,7 @@ const HeaderRightActionsImpl = ({ const handleCopyLink = () => { if (!entry?.url) return Clipboard.setString(entry.url) - toast.info("Link copied to clipboard") + toast.success("Link copied to clipboard") } const handleOpenInBrowser = () => { diff --git a/apps/mobile/src/modules/screen/action.tsx b/apps/mobile/src/modules/screen/action.tsx index f80c18dea..0488e8728 100644 --- a/apps/mobile/src/modules/screen/action.tsx +++ b/apps/mobile/src/modules/screen/action.tsx @@ -102,7 +102,6 @@ export const UnreadOnlyActionButton = ({ variant = "primary" }: HeaderActionButt unreadOnly ? t("operation.toggle_unread_only.show_all.success") : t("operation.toggle_unread_only.show_unread_only.success"), - { position: "bottom" }, ) }} selected={unreadOnly} diff --git a/apps/mobile/src/modules/settings/utils.ts b/apps/mobile/src/modules/settings/utils.ts index e9965a593..8378fef8a 100644 --- a/apps/mobile/src/modules/settings/utils.ts +++ b/apps/mobile/src/modules/settings/utils.ts @@ -86,7 +86,7 @@ export const importOpml = async () => { }) const { successfulItems, conflictItems, parsedErrorItems } = data - toast.info( + toast.success( `Import successful, ${successfulItems.length} feeds were imported, ${conflictItems.length} feeds were already subscribed, and ${parsedErrorItems.length} feeds failed to import.`, ) } catch (error) { diff --git a/locales/mobile/default/en.json b/locales/mobile/default/en.json index 988712a95..68931dc3c 100644 --- a/locales/mobile/default/en.json +++ b/locales/mobile/default/en.json @@ -39,7 +39,7 @@ "operation.toggle_unread_only.show_all.label": "Show All", "operation.toggle_unread_only.show_all.success": "Showing all entries", "operation.toggle_unread_only.show_unread_only.label": "Show Unread Only", - "operation.toggle_unread_only.show_unread_only.success": "Showing unread entries only", + "operation.toggle_unread_only.show_unread_only.success": "Showing unread entries", "operation.unfollow": "Unfollow", "operation.unstar": "Unstar", "profile.title": "{{name}}'s Profile",