diff --git a/site/posts/2022-09-01-liveviewnative.md b/site/posts/2022-09-01-liveviewnative.md index 494d2de..c3c1c1f 100644 --- a/site/posts/2022-09-01-liveviewnative.md +++ b/site/posts/2022-09-01-liveviewnative.md @@ -8,7 +8,7 @@ slug = "liveviewnative" I'm very excited for the project I've been working on all year to finally be public. [LiveView Native](https://native.live) is a library that lets you build native apps backed by [Phoenix LiveView](https://github.com/phoenixframework/phoenix_live_view). I've been developing the [iOS client](https://github.com/liveviewnative/liveview-client-swiftui) which is backed by SwiftUI. -Using LiveView Native lets avoid duplicating business logic on the frontend and save time on implementing dedicated APIs for native apps. The iOS client can be integrated into any existing app by using a single SwiftUI view, so it's easy to adopt it for just a single screen at a time. +Using LiveView Native lets you avoid duplicating business logic on the frontend and save time on implementing dedicated APIs for native apps. The iOS client can be integrated into any existing app by using a single SwiftUI view, so it's easy to adopt it for just a single screen at a time. You can find the documentation[^1] for the Swift package [here](https://liveviewnative.github.io/liveview-client-swiftui/documentation/liveviewnative/), including a step-by-step [tutorial](https://liveviewnative.github.io/liveview-client-swiftui/tutorials/yourfirstapp) which walks you through building a complete app with LiveView Native. diff --git a/site/posts/2023-10-19-phoenix-passkeys.md b/site/posts/2023-10-19-phoenix-passkeys.md index 0a00609..84f3ef2 100644 --- a/site/posts/2023-10-19-phoenix-passkeys.md +++ b/site/posts/2023-10-19-phoenix-passkeys.md @@ -133,7 +133,7 @@ async function registerWebAuthnAccount(form) { // ... user: { id: generateUserID(), - name: form["user[email"].value, + name: form["user[email]"].value, displayName: "", }, },