Skip to content

Commit 5d034e0

Browse files
committed
nit
1 parent cafa0aa commit 5d034e0

File tree

4 files changed

+0
-39
lines changed

4 files changed

+0
-39
lines changed

backend/scripts/query_vespa_schema.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

web/src/app/auth/login/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import LoginPage from "./LoginPage";
1313
const Page = async (props: {
1414
searchParams?: Promise<{ [key: string]: string | string[] | undefined }>;
1515
}) => {
16-
console.log("login page");
1716
const searchParams = await props.searchParams;
1817
const autoRedirectDisabled = searchParams?.disableAutoRedirect === "true";
1918
const nextUrl = Array.isArray(searchParams?.next)

web/src/app/chat/ChatPage.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -805,8 +805,6 @@ export function ChatPage({
805805
currentSessionChatState === "loading" &&
806806
messageHistory.length == 0
807807
) {
808-
console.log("sending message");
809-
console.log(CHROME_MESSAGE.LOAD_NEW_CHAT_PAGE);
810808
window.parent.postMessage(
811809
{ type: CHROME_MESSAGE.LOAD_NEW_CHAT_PAGE },
812810
"*"

web/src/lib/extension/utils.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@ export function notifyExtensionOfThemeChange(
3737
newBgUrl: string
3838
) {
3939
if (typeof window !== "undefined" && window.parent) {
40-
console.log("sending payload", {
41-
theme: newTheme,
42-
backgroundUrl: newBgUrl,
43-
});
44-
console.log("with type", CHROME_MESSAGE.PREFERENCES_UPDATED);
4540
window.parent.postMessage(
4641
{
4742
type: CHROME_MESSAGE.PREFERENCES_UPDATED,

0 commit comments

Comments
 (0)