@@ -6,7 +6,6 @@ import {useMutation} from '@tanstack/react-query'
66
77import { logger } from '#/logger'
88import { Sentry } from '#/logger/sentry/lib'
9- import { useSession } from '#/state/session'
109import { atoms as a , useTheme , web } from '#/alf'
1110import { Button , ButtonText } from '#/components/Button'
1211import * as Dialog from '#/components/Dialog'
@@ -43,7 +42,6 @@ function BetaFeaturesFeedbackDialogInner({
4342 const t = useTheme ( )
4443 const { t : l } = useLingui ( )
4544 const control = Dialog . useDialogContext ( )
46- const { currentAccount} = useSession ( )
4745
4846 const [ feedback , setFeedback ] = useState ( '' )
4947
@@ -62,7 +60,6 @@ function BetaFeaturesFeedbackDialogInner({
6260 Sentry . captureFeedback (
6361 {
6462 message : feedback . trim ( ) ,
65- email : currentAccount ?. email ,
6663 } ,
6764 {
6865 captureContext : {
@@ -108,7 +105,7 @@ function BetaFeaturesFeedbackDialogInner({
108105 < Text
109106 accessibilityLabel = { plural ( remaining , {
110107 one : '# character remaining' ,
111- other : '# cahracters remaining' ,
108+ other : '# characters remaining' ,
112109 } ) }
113110 accessibilityHint = ""
114111 style = { [
0 commit comments