Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed(Search-Filter): Connect Search Filter and endpoint request #2211

Merged
merged 7 commits into from
Oct 18, 2024
6 changes: 1 addition & 5 deletions src/components/App/SideBar/FilterSearch/index.tsx
Original file line number Diff line number Diff line change
@@ -7,7 +7,6 @@ import { getSchemaAll } from '~/network/fetchSourcesData'
import { useDataStore } from '~/stores/useDataStore'
import { useFeatureFlagStore } from '~/stores/useFeatureFlagStore'
import { useSchemaStore } from '~/stores/useSchemaStore'
import { useUserStore } from '~/stores/useUserStore'
import { colors } from '~/utils/colors'
import { FastFilters } from './FastFilters'
import { Hops } from './Hops'
@@ -30,8 +29,7 @@ const defaultValues = {

export const FilterSearch = ({ anchorEl, setAnchorEl, onClose }: Props) => {
const [schemaAll, setSchemaAll] = useSchemaStore((s) => [s.schemas, s.setSchemas])
const { setFilters, fetchData, setAbortRequests } = useDataStore((s) => s)
const { setBudget } = useUserStore((s) => s)
const { setFilters } = useDataStore((s) => s)
const [selectedTypes, setSelectedTypes] = useState<string[]>(defaultValues.selectedTypes)
const [hops, setHops] = useState(defaultValues.hops)
const [sourceNodes, setSourceNodes] = useState<number>(defaultValues.sourceNodes)
@@ -83,8 +81,6 @@ export const FilterSearch = ({ anchorEl, setAnchorEl, onClose }: Props) => {

setAnchorEl(null)
onClose()

await fetchData(setBudget, setAbortRequests)
}

return (
5 changes: 4 additions & 1 deletion src/stores/useDataStore/index.ts
Original file line number Diff line number Diff line change
@@ -263,7 +263,7 @@
sidebarFilterCounts,
})
} catch (error) {
console.log(error)

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / craco-build-run

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/topics.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addYoutube.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/createGeneratedEdges/createGeneratedEdges.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/checkEnv.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addSource.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/sourcesTable/sourcesTable.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/curationTable/curation.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addWebpage.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addTweet.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/signin.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/trendingTopics/trendingTopics.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/seeLatest/latest.cy.ts)

Unexpected console statement

Check warning on line 266 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addNode/addNodeType.cy.ts)

Unexpected console statement

if (error !== 'abort') {
set({ isLoadingNew: false, isFetching: false })
@@ -301,7 +301,10 @@
fetchData()
},
resetDataNew: () => null,
setFilters: (filters: FilterParams) => set((state) => ({ filters: { ...state.filters, ...filters, page: 0 } })),
setFilters: (filters: Partial<FilterParams>) => {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @Rassl, I believe you might have missed this part of the code. Could you please review it again? Everything is working well on my side now. Please see the demo:

https://www.loom.com/share/5dec38ba89024a1c93ed297422478ec3

Copy link
Contributor Author

@MirzaHanan MirzaHanan Oct 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Rassl, could you please scroll down a bit and take a look at the code above?

set((state) => ({ filters: { ...state.filters, ...filters, skip: 0 } }))
get().fetchData(get().setBudget, get().setAbortRequests)
},
setSidebarFilterCounts: (sidebarFilterCounts) => set({ sidebarFilterCounts }),
setTrendingTopics: (trendingTopics) => set({ trendingTopics }),
setStats: (stats) => set({ stats }),
@@ -315,7 +318,7 @@
setHideNodeDetails: (hideNodeDetails) => set({ hideNodeDetails }),
setSeedQuestions: (questions) => set({ seedQuestions: questions }),
updateNode: (updatedNode) => {
console.log(updatedNode)

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / craco-build-run

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/topics.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addYoutube.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/createGeneratedEdges/createGeneratedEdges.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/checkEnv.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addSource.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/sourcesTable/sourcesTable.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/curationTable/curation.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addWebpage.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addTweet.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/signin.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/trendingTopics/trendingTopics.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/seeLatest/latest.cy.ts)

Unexpected console statement

Check warning on line 321 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addNode/addNodeType.cy.ts)

Unexpected console statement
},
addNewNode: (data) => {
const { dataInitial: existingData } = get()
@@ -373,7 +376,7 @@
})
},
removeNode: (id) => {
console.log(id)

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / craco-build-run

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/topics.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addYoutube.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/createGeneratedEdges/createGeneratedEdges.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/checkEnv.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addSource.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/sourcesTable/sourcesTable.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/curationTable/curation.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addWebpage.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addTweet.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/signin.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/trendingTopics/trendingTopics.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/seeLatest/latest.cy.ts)

Unexpected console statement

Check warning on line 379 in src/stores/useDataStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addNode/addNodeType.cy.ts)

Unexpected console statement
},

setRunningProjectId: (runningProjectId) => set({ runningProjectId, runningProjectMessages: [] }),

Unchanged files with check annotations Beta

}
ws.onmessage = (event) => {
console.log('Message from server:', event.data)

Check warning on line 298 in src/components/App/index.tsx

GitHub Actions / eslint-run

Unexpected console statement

Check warning on line 298 in src/components/App/index.tsx

GitHub Actions / craco-build-run

Unexpected console statement
const data = JSON.parse(event.data)
}
ws.onclose = () => {
console.log('WebSocket connection closed')

Check warning on line 320 in src/components/App/index.tsx

GitHub Actions / eslint-run

Unexpected console statement

Check warning on line 320 in src/components/App/index.tsx

GitHub Actions / craco-build-run

Unexpected console statement
}
}, [runningProjectId, setRunningProjectMessages])
await handleAuth()
} catch (error) {
console.log(error)

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / eslint-run

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / craco-build-run

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/admin/topics.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/addContent/addYoutube.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/createGeneratedEdges/createGeneratedEdges.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/checkEnv.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/addContent/addSource.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/sourcesTable/sourcesTable.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/curationTable/curation.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/addContent/addWebpage.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/addContent/addTweet.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/admin/signin.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/trendingTopics/trendingTopics.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/seeLatest/latest.cy.ts)

Unexpected console statement

Check warning on line 112 in src/components/Auth/index.tsx

GitHub Actions / cypress-run (cypress/e2e/addNode/addNodeType.cy.ts)

Unexpected console statement
}
}
const { ref_id: id } = nodeFrom
const { ref_id: selectedId } = selectedToNode
console.log(id, selectedId)

Check warning on line 82 in src/components/ModalsContainer/AddNodeEdgeModal/Body/index.tsx

GitHub Actions / eslint-run

Unexpected console statement
closeHandler()
} catch (error) {
const [normalizedSchemasByType] = useSchemaStore((s) => [s.normalizedSchemasByType])
const [showTooltip, setShowTooltip] = useState(false)
console.log(isSelected)

Check warning on line 47 in src/components/ModalsContainer/BlueprintModal/Body/Graph/Nodes/Node/index.tsx

GitHub Actions / eslint-run

Unexpected console statement
const { size, camera } = useThree()
setOptions(newOptions)
}
} catch (error) {
console.log('Error from get user details: ', error)

Check warning on line 55 in src/components/ModalsContainer/CreateBountyModal/CreateBounty/index.tsx

GitHub Actions / eslint-run

Unexpected console statement
}
}
setActualTopicNode(node)
} catch (error) {
console.log(error)

Check warning on line 64 in src/components/ModalsContainer/EditNodeNameModal/Body/index.tsx

GitHub Actions / eslint-run

Unexpected console statement
} finally {
setTopicIsLoading(false)
}
setActualNode(selectedNode)
}
} catch (error) {
console.log(error)

Check warning on line 56 in src/components/ModalsContainer/RemoveNodeModal/Body/index.tsx

GitHub Actions / eslint-run

Unexpected console statement
} finally {
setTopicIsLoading(false)
}
})
}, [simulation2d])
console.log(selectionGraphData.nodes)

Check warning on line 104 in src/components/Universe/Graph/Cubes/SelectionDataNodes/index.tsx

GitHub Actions / eslint-run

Unexpected console statement
return (
<>
}
}
} catch (error) {
console.log(error)

Check warning on line 56 in src/components/Universe/Graph/UI/NodeControls/index.tsx

GitHub Actions / eslint-run

Unexpected console statement
}
}, [addNewNode, selectedNode?.ref_id, selectionGraphData.nodes.length])
}
export const overrideConsole = () => {
if (!window.location.hostname.includes('local') || true) {

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / craco-build-run

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/admin/topics.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addYoutube.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/createGeneratedEdges/createGeneratedEdges.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/checkEnv.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addSource.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/sourcesTable/sourcesTable.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/curationTable/curation.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addWebpage.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addTweet.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/admin/signin.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/trendingTopics/trendingTopics.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/seeLatest/latest.cy.ts)

Unexpected constant condition

Check warning on line 67 in src/utils/logger/logger.ts

GitHub Actions / cypress-run (cypress/e2e/addNode/addNodeType.cy.ts)

Unexpected constant condition
return
}
simulationHelpers.simulationRestart()
} catch (error) {
console.log(error)

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / craco-build-run

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/topics.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addYoutube.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/createGeneratedEdges/createGeneratedEdges.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/checkEnv.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addSource.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/sourcesTable/sourcesTable.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/curationTable/curation.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addWebpage.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addTweet.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/signin.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/trendingTopics/trendingTopics.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/seeLatest/latest.cy.ts)

Unexpected console statement

Check warning on line 206 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addNode/addNodeType.cy.ts)

Unexpected console statement
// eslint-disable-next-line no-debugger
}
simulationRestart: () => {
const { simulation } = get()
if (false) {

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / craco-build-run

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/topics.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addYoutube.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/createGeneratedEdges/createGeneratedEdges.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/checkEnv.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addSource.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/sourcesTable/sourcesTable.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/curationTable/curation.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addWebpage.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addTweet.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/admin/signin.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/trendingTopics/trendingTopics.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/seeLatest/latest.cy.ts)

Unexpected constant condition

Check warning on line 297 in src/stores/useGraphStore/index.ts

GitHub Actions / cypress-run (cypress/e2e/addNode/addNodeType.cy.ts)

Unexpected constant condition
runSimulationPhase(simulation)
}
},
},
simulationCreate: (nodes, links) => {
console.log('created')

Check warning on line 305 in src/stores/useGraphStore/index.ts

GitHub Actions / craco-build-run

Unexpected console statement
const structuredNodes = structuredClone(nodes)
const structuredLinks = structuredClone(links)
return null
} catch (error) {
console.log(JSON.stringify(error))

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/admin/topics.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addYoutube.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/createGeneratedEdges/createGeneratedEdges.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/checkEnv.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addSource.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/sourcesTable/sourcesTable.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/curationTable/curation.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addWebpage.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addTweet.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/admin/signin.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/trendingTopics/trendingTopics.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/seeLatest/latest.cy.ts)

Unexpected console statement

Check warning on line 31 in src/testSphinxBridge/saveLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addNode/addNodeType.cy.ts)

Unexpected console statement
return null
}
return null
} catch (error) {
console.log(JSON.stringify(error))

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/admin/topics.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addYoutube.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/createGeneratedEdges/createGeneratedEdges.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/checkEnv.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addSource.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/sourcesTable/sourcesTable.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/curationTable/curation.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addWebpage.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addContent/addTweet.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/admin/signin.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/trendingTopics/trendingTopics.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/seeLatest/latest.cy.ts)

Unexpected console statement

Check warning on line 43 in src/testSphinxBridge/getLsat.ts

GitHub Actions / cypress-run (cypress/e2e/addNode/addNodeType.cy.ts)

Unexpected console statement
return null
}