Skip to content

Commit d537ae4

Browse files
committed
fix: checks
1 parent df0abde commit d537ae4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/store/reducers/tableSchemaData.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ export const tableSchemaDataApi = api.injectEndpoints({
4040

4141
const schemaData = await dispatch(
4242
overviewApi.endpoints.getOverview.initiate({
43-
paths: [path],
43+
path,
4444
database: tenantName,
4545
}),
4646
);
47-
const result = prepareSchemaData(type, schemaData.data?.data);
47+
const result = prepareSchemaData(type, schemaData.data);
4848

4949
return {data: result};
5050
} catch (error) {

0 commit comments

Comments
 (0)