Skip to content

Commit

Permalink
fix changes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
Tharanidk committed Feb 26, 2025
1 parent 97db47b commit dd2ce44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ const ApiCreateWithAI = () => {
break;
default:
content = 'Apologies for the inconvenience. It seems that something went wrong with the'
+ ' API Design Assistant Assistant. Please try again.';
+ ' API Design Assistant. Please try again.';
break;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ const ApiChatExecute: React.FC<ApiChatExecuteProps> = ({
onKeyDown={handleKeyDown}
testId='nl-query-input'
multiline
disabled={(designAssistantEnabled && !aiAuthTokenProvided)||!designAssistantEnabled}
disabled={!aiAuthTokenProvided||!designAssistantEnabled}
sx={{
'& .TextInput-textarea': {
resize: 'none',
Expand Down

0 comments on commit dd2ce44

Please sign in to comment.