Skip to content

Commit

Permalink
Ran linter :(
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmccannon committed Dec 1, 2023
1 parent 16d944f commit a266ac7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/guide/frontend/aspnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ Calling `POST /passwordless-register` will create our `IdentityUser` and return
@using Passwordless.AspNetCore
@model RegisterModel
@inject IOptions<PasswordlessAspNetCoreOptions> PasswordlessOptions;
@{
ViewData["Title"] = "Register";
@{
ViewData["Title"] = "Register";
}
<h1>@ViewData["Title"]</h1>
@{
var canAddPasskeys = ViewData["CanAddPasskeys"] is true;
@{
var canAddPasskeys = ViewData["CanAddPasskeys"] is true;
}
<div class="row">
Expand Down

0 comments on commit a266ac7

Please sign in to comment.