Skip to content

Commit

Permalink
FT(types): Fixed select property type color
Browse files Browse the repository at this point in the history
  • Loading branch information
Devorein committed Oct 22, 2021
1 parent 6f49643 commit 5c258d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/types/libs/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export interface ISchemaUnit {
export interface SelectOption {
id: string;
value: string;
color: Exclude<TTextColor, 'teal' | 'default'> | 'green';
color: Exclude<TTextColor, 'teal'> | 'green';
}

/* Basic Schema Units */
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nishans/types",
"version": "0.0.55",
"version": "0.0.57",
"description": "Typescript type definitions for notion",
"keywords": [
"notion",
Expand Down

0 comments on commit 5c258d0

Please sign in to comment.