bar graph fix

This commit is contained in:
Jack Mechem 2026-05-22 15:10:54 -07:00
parent 43318fb8cd
commit 8c3d749197
15 changed files with 973 additions and 401 deletions

View file

@ -1,5 +1,6 @@
"use client";
import { useState } from "react";
import HelpTooltip from "../components/HelpTooltip";
function b64uToBuf(b64u: string): ArrayBuffer {
const b64 = b64u.replace(/-/g, "+").replace(/_/g, "/");
@ -187,6 +188,7 @@ export default function EnrollPage() {
)}
{/* Submit */}
<HelpTooltip text="Register your YubiKey as an authentication device for this account." block>
<button
type="submit"
disabled={busy}
@ -202,6 +204,7 @@ export default function EnrollPage() {
{status === "waiting_yubikey" && "Touch YubiKey…"}
{status === "saving" && "Saving…"}
</button>
</HelpTooltip>
</form>
)}
</div>