async function deleteToken()

in packages/app/src/manage-tokens.tsx [62:66]


  async function deleteToken(token: TokenType) {
    setDeleting(true);
    await tokens.remove(token.prefix, token.created);
    setDeleting(false);
  }