Skip to content

Commit

Permalink
refactor: remove extra options parse
Browse files Browse the repository at this point in the history
  • Loading branch information
danstarns committed Jan 18, 2025
1 parent ac3db69 commit 1b14ba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/hypertable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class HypertableUpBuilder {

constructor(name: string, options: CreateHypertableOptions) {
this.name = name;
this.options = CreateHypertableOptionsSchema.parse(options);
this.options = options;
}

public build(): string {
Expand Down Expand Up @@ -48,7 +48,7 @@ class HypertableDownBuilder {

constructor(name: string, options: CreateHypertableOptions) {
this.name = name;
this.options = CreateHypertableOptionsSchema.parse(options);
this.options = options;
}

public build(): string {
Expand Down

0 comments on commit 1b14ba6

Please sign in to comment.