chore: fix translation

This commit is contained in:
Muhsin Keloth
2024-04-26 00:04:24 +05:30
parent d75da3931e
commit ee882bc880
4 changed files with 30 additions and 6 deletions
@@ -38,5 +38,6 @@ const style = computed(() => ({
const colorClass = computed(() => {
return colors[(props.name.length % 8) + 1];
});
const initial = userInitial(props.name);
const initial = computed(() => userInitial(props.name));
</script>