Skip to content

Commit

Permalink
Made minor code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
salmenus committed Jun 2, 2024
1 parent 93c504b commit 4888d7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {
createExceptionsBoxController,
ExceptionsBoxController,
} from '@shared/components/ExceptionsBox/control';
import {createExceptionsBoxController, ExceptionsBoxController} from '@shared/components/ExceptionsBox/control';
import {createExceptionsBoxDom} from '@shared/components/ExceptionsBox/create';
import {CompRenderer} from '../../../types/comp';
import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const participantNameFromRoleAndPersona = (
// Only using names as PersonaOptions differs between React and Vanilla JS
assistant?: { name?: string };
user?: { name?: string }
} | undefined
} | undefined,
): string => {
if (role === 'assistant') {
return personaOptions?.assistant?.name ?? defaultAiName;
Expand Down

0 comments on commit 4888d7c

Please sign in to comment.