update input suggestions

This commit is contained in:
Nate Kelley 2025-09-30 21:27:00 -06:00
parent 58b57d3492
commit 9f116af78f
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
3 changed files with 4 additions and 3 deletions

View File

@ -90,8 +90,8 @@ export const BusterChatInputButtons = React.memo(
variant={'ghost'}
prefix={<Microphone />}
onClick={listening ? onStopListening : onStartListening}
loading={false}
disabled={disabled}
size={'tall'}
className={cn(
'origin-center transform-gpu transition-all duration-300 ease-out will-change-transform text-text-secondary',
!disabled && 'hover:scale-110 active:scale-95',
@ -115,6 +115,7 @@ export const BusterChatInputButtons = React.memo(
<Button
rounding={'large'}
variant={'default'}
size={'tall'}
prefix={<ArrowUp />}
onClick={
submitting

View File

@ -182,7 +182,7 @@ export const MentionInputSuggestions = forwardRef<
ref={commandRef}
label={ariaLabel}
className={cn(
'relative border rounded overflow-hidden bg-background shadow',
'relative border rounded-xl overflow-hidden bg-background shadow',
// CSS-only solution: Hide separators that come after hidden elements
'[&_[hidden]+[data-separator-after-hidden]]:hidden',
className

View File

@ -115,6 +115,6 @@ export const createSecurityHeaders = (isEmbed = false) => {
'X-Content-Type-Options': 'nosniff',
'Referrer-Policy': 'strict-origin-when-cross-origin',
'X-XSS-Protection': '1; mode=block',
'Permissions-Policy': 'microphone=()',
'Permissions-Policy': 'microphone=(self)',
};
};