Skip to content

Commit f7f7970

Browse files
committed
fix: remove second semicolon
1 parent 501a71f commit f7f7970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adminforth/dataConnectors/clickhouse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ClickhouseConnector extends AdminForthBaseConnector implements IAdminForth
1818
constructor({ url }: { url: string }) {
1919
super();
2020
this.dbName = new URL(url).pathname.replace('/', '');
21-
this.url = url;;
21+
this.url = url;
2222
// create connection here
2323
this.client = createClient({
2424
url: url.replace('clickhouse://', 'http://'),

0 commit comments

Comments
 (0)