🐛 fix(config): Runtime env

This commit is contained in:
web@ppanel
2024-12-08 12:59:14 +07:00
parent 55727103b8
commit a1e4999a2f
5 changed files with 52 additions and 60 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export function Empty() {
useEffect(() => {
const random = Math.floor(Math.random() * 10);
setDescription(t(`empty.${random}`));
}, []);
}, [t]);
return <_Empty description={description} />;
}