feat: feature/mvp-sprint-1 Made the thingtime icon random
This commit is contained in:
parent
914501a1b4
commit
89c1e67467
@ -128,6 +128,9 @@ export const Icon = (props) => {
|
|||||||
return "๐"
|
return "๐"
|
||||||
}
|
}
|
||||||
if (["thingtime"]?.includes(name)) {
|
if (["thingtime"]?.includes(name)) {
|
||||||
|
if (Math.random() > 0.5) {
|
||||||
|
return "๐ณ"
|
||||||
|
}
|
||||||
return "๐"
|
return "๐"
|
||||||
}
|
}
|
||||||
}, [name])
|
}, [name])
|
||||||
|
Loadingโฆ
Reference in New Issue
Block a user