Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
pablonyx committed Jan 10, 2025
1 parent cafa0aa commit 5d034e0
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 39 deletions.
31 changes: 0 additions & 31 deletions backend/scripts/query_vespa_schema.py

This file was deleted.

1 change: 0 additions & 1 deletion web/src/app/auth/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import LoginPage from "./LoginPage";
const Page = async (props: {
searchParams?: Promise<{ [key: string]: string | string[] | undefined }>;
}) => {
console.log("login page");
const searchParams = await props.searchParams;
const autoRedirectDisabled = searchParams?.disableAutoRedirect === "true";
const nextUrl = Array.isArray(searchParams?.next)
Expand Down
2 changes: 0 additions & 2 deletions web/src/app/chat/ChatPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -805,8 +805,6 @@ export function ChatPage({
currentSessionChatState === "loading" &&
messageHistory.length == 0
) {
console.log("sending message");
console.log(CHROME_MESSAGE.LOAD_NEW_CHAT_PAGE);
window.parent.postMessage(
{ type: CHROME_MESSAGE.LOAD_NEW_CHAT_PAGE },
"*"
Expand Down
5 changes: 0 additions & 5 deletions web/src/lib/extension/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ export function notifyExtensionOfThemeChange(
newBgUrl: string
) {
if (typeof window !== "undefined" && window.parent) {
console.log("sending payload", {
theme: newTheme,
backgroundUrl: newBgUrl,
});
console.log("with type", CHROME_MESSAGE.PREFERENCES_UPDATED);
window.parent.postMessage(
{
type: CHROME_MESSAGE.PREFERENCES_UPDATED,
Expand Down

0 comments on commit 5d034e0

Please sign in to comment.