Skip to content

Commit d14cf03

Browse files
committed
fix: download .seed extension
1 parent 1f27e04 commit d14cf03

File tree

1 file changed

+4
-2
lines changed
  • s/authority/views/pages/list

1 file changed

+4
-2
lines changed

s/authority/views/pages/list/view.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import {html} from "lit"
33
import {view} from "@e280/sly"
4-
import {is, Thumbprint} from "@e280/stz"
4+
import {is, thumbprint} from "@e280/stz"
55

66
import stylesCss from "./styles.css.js"
77
import themeCss from "../../../theme.css.js"
@@ -153,7 +153,9 @@ export const ListPage = view(use => (
153153

154154
downloader.text = selectedSeeds.join("\n\n")
155155
const filename = selectedIdentityIds.length === 1
156-
? crushUsername(Thumbprint.sigil.fromHex(selectedIdentityIds.at(0)!))
156+
? crushUsername(
157+
thumbprint.sigil.fromHex(selectedIdentityIds.at(0)!)
158+
) + constants.seedExtension
157159
: "identities" + constants.seedExtension
158160

159161
return html`

0 commit comments

Comments
 (0)