Skip to content

Commit

Permalink
coral-web: Change default page head title from Coral --> Chat (cohere…
Browse files Browse the repository at this point in the history
…-ai#188)

change default page head title Coral --> Chat
  • Loading branch information
misspia-cohere authored Jun 10, 2024
1 parent 3447bdb commit c468520
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 @@ -42,7 +42,7 @@ export const EditEnvVariablesButton: React.FC<{ className?: string }> = () => {
export const EditEnvVariablesModal: React.FC<{
defaultDeployment: string;
onClose: () => void;
}> = ({defaultDeployment, onClose }) => {
}> = ({ defaultDeployment, onClose }) => {
const { data: deployments } = useListAllDeployments();

const [deployment, setDeployment] = useState<string | undefined>(defaultDeployment);
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/coral_web/src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type Props = {
* It shows the navigation bar, the left drawer and main content.
* On small devices (e.g. mobile), the left drawer and main section are stacked vertically.
*/
export const Layout: React.FC<Props> = ({ title = 'Coral', children }) => {
export const Layout: React.FC<Props> = ({ title = 'Chat', children }) => {
const { message: bannerMessage } = useContext(BannerContext);
const {
settings: { isConvListPanelOpen, isMobileConvListPanelOpen },
Expand Down

0 comments on commit c468520

Please sign in to comment.