fix: removal of create nostr auth token

This commit is contained in:
Davinci 2024-05-16 09:23:08 +02:00 committed by Yury
parent 05e8a5dc4b
commit b3954d387a
2 changed files with 4 additions and 14 deletions

View File

@ -45,20 +45,6 @@ export class AuthController {
console.error('Error occurred while finding metadata', err)
})
// Nostr uses unix timestamps
const timestamp = Math.floor(Date.now() / 1000)
const { hostname } = window.location
const authEvent: EventTemplate = {
kind: 1,
tags: [],
content: `${hostname}-${timestamp}`,
created_at: timestamp
}
const signedAuthEvent = await this.nostrController.signEvent(authEvent)
this.createAndSaveAuthToken(signedAuthEvent)
store.dispatch(
setAuthState({
loggedIn: true,

View File

@ -388,6 +388,10 @@ export const VerifyPage = () => {
setIsLoading(false)
}
/**
*
* @returns exported.zip including signed files and meta info (about signers and viewers)
*/
const handleExport = async () => {
if (!meta || !zip || !usersPubkey) return