diff --git a/src/app.tsx b/src/app.tsx
index 2ab83fd..928c74b 100644
--- a/src/app.tsx
+++ b/src/app.tsx
@@ -91,20 +91,27 @@ export function App() {
NEW
- {allChatStore.map((cs, i) => (
- -
-
-
- ))}
+ {allChatStore
+ .slice()
+ .reverse()
+ .map((cs, _i) => {
+ // reverse
+ const i = allChatStore.length - _i - 1;
+ return (
+ -
+
+
+ );
+ })}