Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
donmccurdy committed Jun 24, 2024
1 parent 9c149f5 commit eb79e8a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sources/widget-base-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ import {$TODO} from '../types-internal.js';
*/
export interface WidgetBaseSourceProps extends SourceOptions, Credentials {
type?: MapType;
filters?: Record<string, Filter>;
filtersLogicalOperator?: FilterLogicalOperator;
queryParameters?: unknown[];
provider?: string;
filters?: Record<string, Filter>;
}

export type WidgetSource = WidgetBaseSource<WidgetBaseSourceProps>;
Expand Down Expand Up @@ -67,7 +67,6 @@ export class WidgetBaseSource<Props extends WidgetBaseSourceProps> {
credentials: this.credentials,
connection: this.connectionName,
filters: getApplicableFilters(owner, this.props.filters),
filtersLogicalOperator: this.props.filtersLogicalOperator,
};
}

Expand Down

0 comments on commit eb79e8a

Please sign in to comment.