Skip to content

Commit eaf56e0

Browse files
committed
FCE-983/fix re-exporting from ts-client (#226)
Re-exports Variant from `ts-client` as is. Variant enum has been accidentally exported just as a type, which makes it impossible to use it as a value. - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
1 parent d7acc98 commit eaf56e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-client/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ export type {
3737
VadStatus,
3838
EncodingReason,
3939
AuthErrorReason,
40-
Variant,
4140
} from "@fishjam-cloud/ts-client";
41+
export { Variant } from "@fishjam-cloud/ts-client";

0 commit comments

Comments
 (0)