Add space home page

This commit is contained in:
Jon Staab
2024-10-31 12:24:40 -07:00
parent df947e9fcf
commit 74f9531c5f
34 changed files with 401 additions and 155 deletions
+2 -2
View File
@@ -264,7 +264,7 @@ export type Settings = {
values: {
show_media: boolean
hide_sensitive: boolean
send_delay: number,
send_delay: number
}
}
@@ -528,7 +528,7 @@ export const encodeRelay = (url: string) => encodeURIComponent(normalizeRelayUrl
export const decodeRelay = (url: string) => normalizeRelayUrl(decodeURIComponent(url))
export const displayReaction = (content: string) => {
if (content === "+") return "❤️"
if (!content || content === "+") return "❤️"
if (content === "-") return "👎"
return content
}