File tree Expand file tree Collapse file tree 4 files changed +0
-39
lines changed Expand file tree Collapse file tree 4 files changed +0
-39
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import LoginPage from "./LoginPage";
13
13
const Page = async ( props : {
14
14
searchParams ?: Promise < { [ key : string ] : string | string [ ] | undefined } > ;
15
15
} ) => {
16
- console . log ( "login page" ) ;
17
16
const searchParams = await props . searchParams ;
18
17
const autoRedirectDisabled = searchParams ?. disableAutoRedirect === "true" ;
19
18
const nextUrl = Array . isArray ( searchParams ?. next )
Original file line number Diff line number Diff line change @@ -805,8 +805,6 @@ export function ChatPage({
805
805
currentSessionChatState === "loading" &&
806
806
messageHistory . length == 0
807
807
) {
808
- console . log ( "sending message" ) ;
809
- console . log ( CHROME_MESSAGE . LOAD_NEW_CHAT_PAGE ) ;
810
808
window . parent . postMessage (
811
809
{ type : CHROME_MESSAGE . LOAD_NEW_CHAT_PAGE } ,
812
810
"*"
Original file line number Diff line number Diff line change @@ -37,11 +37,6 @@ export function notifyExtensionOfThemeChange(
37
37
newBgUrl : string
38
38
) {
39
39
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 ) ;
45
40
window . parent . postMessage (
46
41
{
47
42
type : CHROME_MESSAGE . PREFERENCES_UPDATED ,
You can’t perform that action at this time.
0 commit comments