mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-24 21:53:39 +00:00
Silence Logs
This commit is contained in:
parent
e807810648
commit
5fa1ff371e
3 changed files with 5 additions and 5 deletions
|
@ -46,7 +46,7 @@ getDeviceInfo() {
|
|||
}
|
||||
|
||||
handleWebVitals = () =>(d: any) => {
|
||||
console.log(d)
|
||||
if(isDev) console.log(d)
|
||||
let idThing = d.name
|
||||
// const _this = this
|
||||
switch(idThing) {
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
// writing my own hashRouter
|
||||
|
||||
export function HashRouter({ children }: any) {
|
||||
console.log(children)
|
||||
if(process.env.NODE_ENV !== "production") console.log(children)
|
||||
if(!Array.isArray(children)) children = [children]
|
||||
debugger;
|
||||
const child = children.find((child:any) => {
|
||||
console.log('script', child.props, window.location.hash, child.props.route == window.location.hash, (window.location.hash.length < 2 && child.props.index))
|
||||
if(process.env.NODE_ENV !== "production") console.log('script', child.props, window.location.hash, child.props.route == window.location.hash, (window.location.hash.length < 2 && child.props.index))
|
||||
return child.props.path == window.location.hash || (window.location.hash.length < 2 && child.props.index) || child.props.path == "*"
|
||||
})
|
||||
// console.log('child', child)
|
||||
|
|
|
@ -50,7 +50,7 @@ const [translateY, setTranslateY] = useState(0)
|
|||
|
||||
.then((data) =>
|
||||
{
|
||||
console.log(data[0], data[1])
|
||||
if(process.env.NODE_ENV !== "production") console.log(data[0], data[1])
|
||||
const idsThatAreFound:any = {}
|
||||
const items = [...data[0], ...data[1]]
|
||||
.filter(e => e.topics.includes('github-include-on-site'))
|
||||
|
@ -61,7 +61,7 @@ const [translateY, setTranslateY] = useState(0)
|
|||
})
|
||||
|
||||
console.log()
|
||||
console.log(items)
|
||||
if(process.env.NODE_ENV !== "production") console.log(items)
|
||||
//@ts-ignore
|
||||
setGithubData(items)
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue