Skip to content

Commit 212cde6

Browse files
committed
fix: change initial value useTextDirection to ltr
1 parent 63f7d6b commit 212cde6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ defineShortcuts({
5151
5252
const useIdFunction = () => useId()
5353
54-
const textDirection = useTextDirection({ initialValue: 'rtl' })
54+
const textDirection = useTextDirection({ initialValue: 'ltr' })
5555
const dir = computed(() => textDirection.value === 'rtl' ? 'rtl' : 'ltr')
5656
</script>
5757

0 commit comments

Comments
 (0)