This commit is contained in:
SrGooglo 2022-11-24 14:58:51 +00:00
parent 972a927555
commit 727485f312

View File

@ -49,7 +49,7 @@ const AccountButton = (props) => {
actions: [ actions: [
{ {
key: "settings", key: "settings",
text: <><Icons.Settings /> Settings</>, text: <><Icons.Settings /> <span>Settings</span></>,
onClick: () => { onClick: () => {
app.openSettings() app.openSettings()
ActionSheetRef.current.close() ActionSheetRef.current.close()
@ -57,7 +57,7 @@ const AccountButton = (props) => {
}, },
{ {
key: "savedPosts", key: "savedPosts",
text: <><Icons.Bookmark /> Saved Posts</>, text: <><Icons.Bookmark /> <span>Saved Posts</span></>,
onClick: () => { onClick: () => {
app.setLocation("/home/savedPosts") app.setLocation("/home/savedPosts")
ActionSheetRef.current.close() ActionSheetRef.current.close()
@ -65,7 +65,7 @@ const AccountButton = (props) => {
}, },
{ {
key: "about", key: "about",
text: <><Icons.Info /> About</>, text: <><Icons.Info /> <span>About</span></>,
onClick: () => { onClick: () => {
app.setLocation("/about") app.setLocation("/about")
ActionSheetRef.current.close() ActionSheetRef.current.close()