Skip to content

Commit 4eabbb8

Browse files
committed
remove console logs
1 parent 1bb9126 commit 4eabbb8

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

packages/sn-auth-react/src/components/auth-routes.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { memo, ReactNode, useEffect } from 'react'
1+
import React, { memo, ReactNode } from 'react'
22
import { Authenticating } from './authenticating'
33

44
export type AuthRoutesProps = {
@@ -8,10 +8,6 @@ export type AuthRoutesProps = {
88
}
99

1010
const AuthRoutesComponent = ({ callbackUri, children, currentPath }: AuthRoutesProps) => {
11-
useEffect(() => {
12-
console.log(currentPath)
13-
}, [currentPath])
14-
1511
switch (currentPath) {
1612
case callbackUri:
1713
return <Authenticating />

packages/sn-client-core/src/Repository/ODataUrlBuilder.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export class ODataUrlBuilder {
4949
)
5050
}
5151
}
52-
console.log(oDataParams.select)
5352
oDataParams.metadata = oDataParams.metadata ?? config.defaultMetadata
5453
oDataParams.inlinecount = oDataParams.inlinecount ?? config.defaultInlineCount
5554
oDataParams.expand = oDataParams.expand ?? (config.defaultExpand as any)

0 commit comments

Comments
 (0)