mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-28 00:34:47 -04:00
fix: Stores Not Populating Sometimes (#6266)
This commit is contained in:
@@ -8,7 +8,7 @@ export const useToggleDarkMode = () => {
|
||||
};
|
||||
|
||||
export const useAsyncKey = function () {
|
||||
return String(Date.now());
|
||||
return `${Date.now()}-${Math.random().toString(36).slice(2)}`;
|
||||
};
|
||||
|
||||
export const titleCase = function (str: string) {
|
||||
|
||||
Reference in New Issue
Block a user