diff --git a/README.md b/README.md index 716b00d..db2aef2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ - [Akkoma](https://akkoma.social/) - - [Raycast](https://raycast.com) +- [Raycast](https://raycast.com) **Features**: - Write status with markdown support. diff --git a/src/bookmark.tsx b/src/bookmark.tsx index d7ee6a4..e0b8336 100644 --- a/src/bookmark.tsx +++ b/src/bookmark.tsx @@ -17,10 +17,10 @@ export default function BookmarkCommand() { const getBookmark = async () => { try { await authorize(); - showToast(Toast.Style.Animated, "Loading bookmarks..."); + showToast(Toast.Style.Animated, "Loading bookmarks..☆ミ(o*・ω・)ノ."); const newBookmarks = await apiServer.fetchBookmarks(); setBookmarks((prevBookmarks) => [...prevBookmarks, ...newBookmarks]); - showToast(Toast.Style.Success, "Bookmarked has been loaded"); + showToast(Toast.Style.Success, "Bookmarked has been loaded \(^o^)/"); cache.set("latest_bookmarks", JSON.stringify(newBookmarks)); } catch (error) { const requestErr = error as AkkomaError; diff --git a/src/my-status.tsx b/src/my-status.tsx index a879c40..fd4b706 100644 --- a/src/my-status.tsx +++ b/src/my-status.tsx @@ -17,10 +17,10 @@ export default function ViewStatusCommand() { const getBookmark = async () => { try { await authorize(); - showToast(Toast.Style.Animated, "Loading Status..."); + showToast(Toast.Style.Animated, "Loading Status...ε=ε=┌( >_<)┘"); const status = await apiServer.fetchUserStatus(); setStatus(status); - showToast(Toast.Style.Success, "Statuses has been loaded"); + showToast(Toast.Style.Success, "Statuses has been loaded ٩(•̤̀ᵕ•̤́๑)ᵒᵏᵎᵎᵎᵎ"); cache.set("latest_statuses", JSON.stringify(status)); } catch (error) { const requestErr = error as AkkomaError;