Skip to content

Commit

Permalink
remove logging and other minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiion committed Sep 17, 2024
1 parent 613355c commit 5150d81
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 0 additions & 2 deletions apps/edb-cli/src/dataStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ if (!provider) {
}
export const crudFunctions = provider(config.sparqlEndpoint);

console.log("env", process.env.DATABASE_PROVIDER);

export const dataStore =
process.env.DATABASE_PROVIDER === "sparql"
? initSPARQLDataStoreFromConfig(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ type MappingTestComponentProps = {
| "Location"
| "Person"
| "Organization"
| "Event"
| "Performance"
| "Occupation"
| "Exhibition"
| "ExhibitionSeries";
};
Expand Down
8 changes: 4 additions & 4 deletions packages/config-helper/typedoc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": ["@slub/edb-tsconfig/typedoc.base.json"],
"entryPoints": ["src/index.ts"]
}
export default {
extends: ["@slub/edb-tsconfig/typedoc.base.json"],
entryPoints: ["src/index.ts"],
};
2 changes: 0 additions & 2 deletions packages/table-components/src/SemanticTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,6 @@ export const SemanticTable = ({
[],
queryBuildOptions.primaryFields,
);
//const entries = Object.fromEntries(cols.map(c => [c.header, ""]))
//console.log(JSON.stringify(entries, null, 2))
return cols;
}, [
loadedSchema,
Expand Down

0 comments on commit 5150d81

Please sign in to comment.