feedCreate: use hook for randIndex
This commit is contained in:
parent
e697024f52
commit
f451d94295
|
@ -74,7 +74,9 @@ export default function FeedCreate(props: {
|
||||||
// Easter egg idea: click your own name to shuffle the placeholder
|
// Easter egg idea: click your own name to shuffle the placeholder
|
||||||
// const daysSinceEpoch = Math.floor(Date.now() / 1000 / 60 / 60 / 24)
|
// const daysSinceEpoch = Math.floor(Date.now() / 1000 / 60 / 60 / 24)
|
||||||
|
|
||||||
const randIndex = Math.floor(Math.random() * 1e10) % placeholders.length
|
const [randIndex] = useState(
|
||||||
|
Math.floor(Math.random() * 1e10) % placeholders.length
|
||||||
|
)
|
||||||
const placeholder = props.placeholder ?? `e.g. ${placeholders[randIndex]}`
|
const placeholder = props.placeholder ?? `e.g. ${placeholders[randIndex]}`
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in New Issue
Block a user