removed logs

This commit is contained in:
Anish Roy
2023-01-08 06:36:36 +00:00
parent f28ca3eb0d
commit afbd8f489a
2 changed files with 1 additions and 3 deletions

View File

@@ -128,7 +128,6 @@ export function useTableFunctions() {
);
Object.keys(_schema.subTables).forEach((subTableId: string) => {
if (_schema.subTables) {
console.log(subTableId);
batch.set(
subTableCollectionRef(subTableId),
_schema.subTables[subTableId]
@@ -222,7 +221,6 @@ export function useTableFunctions() {
);
Object.keys(_schema.subTables).forEach((subTableId: string) => {
if (_schema.subTables) {
console.log(subTableId);
batch.set(
subTableCollectionRef(subTableId),
_schema.subTables[subTableId]

View File

@@ -116,7 +116,7 @@ export type TableSchema = {
};
export type SubTablesSchema = {
[key: string]: TablesSchema;
[key: string]: TableSchema;
};
export type ColumnConfig = {