// HEAD import type { Component } from 'solid-js' import type { DivProps } from '../../ui/utils-ui' import { Logger } from 'besonders-logger' import { Show, splitProps } from 'solid-js' // // 3e1fe6a9079c5e1e5ea35d30d46089f5ccd0e1d0 import { useAgent } from '../../data/agent/AgentState' import { AgentEditor } from './AgentEditor' import { MnemDialog } from './MnemDialog' const { WARN, LOG, DEBUG, VERBOSE, ERROR } = Logger.setup(Logger.INFO) // eslint-disable-line unused-imports/no-unused-vars export const AgentSettings: Component void }> = (allProps) => { const [props, restProps] = splitProps(allProps, ['initialSetup', 'onSave']) DEBUG('Creating ') // HACK used to render twice and sideEffects should only happen once if possible const agent = useAgent() // ? are there reactivity reasons not to destructure here? // let mnemDialogRef return ( //
Your user info {` (${agent.ag})`}
Set up your agent string:

This handle (which includes a {' '} DID ) is what other devices will see as the author of the data you create - {' '} if you choose to share it .

{/* */}
{/* TODO: */}
//
) }