tangled
alpha
login
or
join now
yoten.app
/
yoten
17
fork
atom
Yōten: A social tracker for your language learning journey built on the atproto.
17
fork
atom
overview
issues
pulls
pipelines
fix: correct heart reaction type
brookjeynes.dev
6 months ago
f4f4e6a2
4221c9eb
verified
This commit was signed with the committer's
known signature
.
brookjeynes.dev
SSH Key Fingerprint:
SHA256:N3n3PCBSiXfS6EHlmGdx+LMEruJMj6FS2hqaXyfsw0s=
+1
-1
1 changed file
expand all
collapse all
unified
split
internal
db
reaction.go
+1
-1
internal/db/reaction.go
···
49
49
var Reactions = map[string]Reaction{
50
50
"fire": {ID: Fire, Emoji: "🔥", Label: "Fire", Type: "fire", Description: "Amazing work!"},
51
51
"clap": {ID: Clap, Emoji: "👏", Label: "Clap", Type: "clap", Description: "Well done!"},
52
52
-
"love": {ID: Love, Emoji: "❤️", Label: "Love", Type: "heart", Description: "Love this!"},
52
52
+
"love": {ID: Love, Emoji: "❤️", Label: "Love", Type: "love", Description: "Love this!"},
53
53
"star": {ID: Star, Emoji: "⭐", Label: "Star", Type: "star", Description: "Excellent!"},
54
54
"strong": {ID: Strong, Emoji: "💪", Label: "Strong", Type: "strong", Description: "Keep it up!"},
55
55
"smart": {ID: Smart, Emoji: "🧠", Label: "Smart", Type: "smart", Description: "So smart!"},