You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ComponentClientKeys.ts file is not being exported in src/booking/index.ts, which prevents accessing duffel.componentClientKeys.create(). This is causing issues when trying to use the functionality provided by ComponentClientKeys.
Currently, the src/booking/index.ts file exports the following:
However, ComponentClientKeys.ts is located in src/booking/Identity/ComponentClientKey and is not included in the exports. Additionally, there is no index.ts file in the src/booking/Identity/ folder that exports ComponentClientKeys.ts.
Steps to Reproduce
Try to access duffel.componentClientKeys.create() in the current implementation.
Observe that it is inaccessible due to the missing export.
Expected Behavior duffel.componentClientKeys.create() should be accessible after exporting ComponentClientKeys.ts in src/booking/index.ts or adding an index.ts in the src/booking/Identity/ folder to re-export ComponentClientKeys.ts.
The text was updated successfully, but these errors were encountered:
The
ComponentClientKeys.ts
file is not being exported insrc/booking/index.ts
, which prevents accessingduffel.componentClientKeys.create()
. This is causing issues when trying to use the functionality provided byComponentClientKeys
.Currently, the
src/booking/index.ts
file exports the following:However,
ComponentClientKeys.ts
is located insrc/booking/Identity/ComponentClientKey
and is not included in the exports. Additionally, there is noindex.ts
file in thesrc/booking/Identity/
folder that exportsComponentClientKeys.ts
.Steps to Reproduce
Try to access
duffel.componentClientKeys.create()
in the current implementation.Observe that it is inaccessible due to the missing export.
Expected Behavior
duffel.componentClientKeys.create()
should be accessible after exportingComponentClientKeys.ts
insrc/booking/index.ts
or adding anindex.ts
in thesrc/booking/Identity/
folder to re-exportComponentClientKeys.ts
.The text was updated successfully, but these errors were encountered: