Skip to content

Commit 01939fe

Browse files
committed
fix the fmt problem and check status by running deno fmt and deno task ok
1 parent 5cf8980 commit 01939fe

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

deno.lock

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/latest/getting-started/form-submissions.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,7 @@ export default function Page({ data }: PageProps<Data>) {
5959
</button>
6060
</form>
6161
<ul>
62-
{results.map((name) => (
63-
<li key={name}>{name}</li>
64-
))}
62+
{results.map((name) => <li key={name}>{name}</li>)}
6563
</ul>
6664
</div>
6765
);

0 commit comments

Comments
 (0)