diff --git a/src/lib/Others.svelte b/src/lib/Others.svelte
index bf960cd..18a5cc3 100644
--- a/src/lib/Others.svelte
+++ b/src/lib/Others.svelte
@@ -1,7 +1,7 @@
-{#if allData}
+
+ actualmente:
{#each $allData as data}
{#if data.doing.length > 0}
@@ -32,4 +36,30 @@
{/if}
{/each}
-{/if}
+ previamente:
+
+ {#each sortedDone as thing}
+ -
+ {thing.friend.name || thing.friend.id.room}
+ hizo
+ {thing.description}
+ por
+ {formatDistanceShort(
+ intervalToDuration({
+ start: new Date(thing.started),
+ end: new Date(thing.started + thing.took),
+ })
+ )}
+ hace
+ {formatDistance($hTimer, new Date(thing.started + thing.took))}
+
+ {/each}
+
+
+
+