We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f27e04 commit d14cf03Copy full SHA for d14cf03
s/authority/views/pages/list/view.ts
@@ -1,7 +1,7 @@
1
2
import {html} from "lit"
3
import {view} from "@e280/sly"
4
-import {is, Thumbprint} from "@e280/stz"
+import {is, thumbprint} from "@e280/stz"
5
6
import stylesCss from "./styles.css.js"
7
import themeCss from "../../../theme.css.js"
@@ -153,7 +153,9 @@ export const ListPage = view(use => (
153
154
downloader.text = selectedSeeds.join("\n\n")
155
const filename = selectedIdentityIds.length === 1
156
- ? crushUsername(Thumbprint.sigil.fromHex(selectedIdentityIds.at(0)!))
+ ? crushUsername(
157
+ thumbprint.sigil.fromHex(selectedIdentityIds.at(0)!)
158
+ ) + constants.seedExtension
159
: "identities" + constants.seedExtension
160
161
return html`
0 commit comments