+
+ {t("settings.memory.add")}
+
+ }
+ >
+
+ {t("settings.memory.mockNotice")}
+
+
+
+ setQuery(e.currentTarget.value)}
+ placeholder={t("settings.memory.searchPlaceholder")}
+ className="pl-9"
+ />
+
+
+ {memories.length === 0 ? (
+
+ ) : visible.length === 0 ? (
+
+ ) : (
+ visible.map((memory) => (
+ }
+ title={memory.body}
+ description={`${t("settings.memory.writtenBy", {
+ source: memory.source,
+ })} · ${timeAgo(memory.writtenAt)}`}
+ action={
+
+ }
+ />
+ ))
+ )}
+
+
+