Changes all documents to have an explicit type

This commit is contained in:
2025-06-27 21:58:58 -07:00
parent 611eaca5b6
commit c00eb1d965
29 changed files with 309 additions and 363 deletions

View File

@@ -68,11 +68,7 @@ export const TreasureToggleRow = ({
aria-label="Discovered"
disabled={loading}
/>
<span>
{(treasure.data as any)?.treasure?.text || (
<span className="italic text-slate-400">(No treasure text)</span>
)}
</span>
<span>{treasure.data.text}</span>
</div>
);
};