Skip to content

Commit a572cc7

Browse files
committed
Removed old console.log statements
1 parent af1f68b commit a572cc7

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/application/ApplicationThunks.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import {
1010

1111
export const createConnectionThunk = (protocol, url, port, database, username, password) => (dispatch: any, getState: any) => {
1212
try {
13-
console.log(protocol, url, port, database, username, password);
1413
const driver = createDriver(protocol, url, port, username, password)
1514
console.log("Attempting to connect...")
1615
const validateConnection = (records) => {

src/chart/ParameterSelectionChart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const NeoParameterSelectionChart = (props: ChartProps) => {
1515
debouncedQueryCallback && debouncedQueryCallback(query, { input: inputText }, setExtraRecords);
1616
}, [inputText, query]);
1717
}catch(e){
18-
console.log(e);
18+
1919
}
2020

2121
const settings = (props.settings) ? props.settings : {};

src/modal/WelcomeScreenModal.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,8 @@ export const NeoWelcomeScreenModal = ({ welcomeScreenOpen, setWelcomeScreenOpen,
9191
</Button>}
9292

9393
<Tooltip title="Try a demo dashboard with a public Neo4j database." aria-label="">
94-
<a style={{textDecoration: "none"}} href="http://localhost:3000/?share&type=file&id=https%3a%2f%2fgist.githubusercontent.com%2fnielsdejong%2ff983b6b6e06e4e10a1f31ae693de6600%2fraw%2f8230a024ee847982d46e198790fcb15fc3c1d06b%2fexample.json&credentials=neo4j%2bs%3a%2f%2ffincen%3afincen%40fincen%3ademo.neo4jlabs.com%3a7687">
94+
<a style={{textDecoration: "none"}} href="http://neodash.graphapp.io/?share&type=file&id=https%3a%2f%2fgist.githubusercontent.com%2fnielsdejong%2ff983b6b6e06e4e10a1f31ae693de6600%2fraw%2f8230a024ee847982d46e198790fcb15fc3c1d06b%2fexample.json&credentials=neo4j%2bs%3a%2f%2ffincen%3afincen%40fincen%3ademo.neo4jlabs.com%3a7687">
9595
<Button
96-
9796
style={{ marginTop: "10px", width: "100%", backgroundColor: "white", boxShadow: "0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%)" }}
9897
color="default"
9998
variant="contained"

0 commit comments

Comments
 (0)