Skip to content

Commit 282e01e

Browse files
committed
Update Managing State Page
- Fix RTL - words left without translations
1 parent 04ac7a4 commit 282e01e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/content/learn/managing-state.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,14 +250,14 @@ export default function Accordion() {
250250
<>
251251
<h2>Almaty, Kazakhstan</h2>
252252
<Panel
253-
title="About"
253+
title="نبذة"
254254
isActive={activeIndex === 0}
255255
onShow={() => setActiveIndex(0)}
256256
>
257257
مع تعداد سكاني يقارب 2 مليون، Almaty هي أكبر مدينة بـ Kazakhstan. منذ 1929 إلى 1997 كانت هي العاصمة.
258258
</Panel>
259259
<Panel
260-
title="Etymology"
260+
title="أصل الكلمة"
261261
isActive={activeIndex === 1}
262262
onShow={() => setActiveIndex(1)}
263263
>
@@ -568,7 +568,7 @@ function tasksReducer(tasks, action) {
568568
id: action.id,
569569
text: action.text,
570570
done: false
571-
}];
571+
}];ِ
572572
}
573573
case 'changed': {
574574
return tasks.map(t => {
@@ -592,7 +592,7 @@ let nextId = 3;
592592
const initialTasks = [
593593
{ id: 0, text: 'زيارة متحف Kafka', done: true },
594594
{ id: 1, text: 'مشاهدة عرض الدمى', done: false },
595-
{ id: 2, text: 'Lennon Wall صورة', done: false }
595+
{ id: 2, text: 'صورة Lennon Wall', done: false }
596596
];
597597
```
598598

0 commit comments

Comments
 (0)