Skip to content

Commit

Permalink
fix: page header styles
Browse files Browse the repository at this point in the history
Fixes #3
  • Loading branch information
NagariaHussain committed May 24, 2023
1 parent 57e0f2c commit d200851
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
frappe.pages["doppio-bot"].on_page_load = function (wrapper) {
var page = frappe.ui.make_app_page({
frappe.ui.make_app_page({
parent: wrapper,
title: "Ask DoppioBot",
single_column: true,
});
};
Expand Down
2 changes: 2 additions & 0 deletions doppio_bot/public/js/ChatView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
Avatar,
useToast,
Textarea,
Text,
} from "@chakra-ui/react";
import { SendIcon } from "lucide-react";
import React, { useState } from "react";
Expand Down Expand Up @@ -74,6 +75,7 @@ const ChatView = ({ sessionID }) => {
maxWidth={"4xl"}
mx={"auto"}
>
<Text fontSize="xl" fontWeight={"bold"} textColor={"gray.700"}>Ask DoppioBot</Text>
{/* Chat Area */}
<Box
width={"100%"}
Expand Down

0 comments on commit d200851

Please sign in to comment.