diff --git a/src/datasets/providers/devcycle.ts b/src/datasets/providers/devcycle.ts index d239152c0..b1d0932fc 100644 --- a/src/datasets/providers/devcycle.ts +++ b/src/datasets/providers/devcycle.ts @@ -35,6 +35,12 @@ export const DevCycle: Provider = { href: 'https://docs.devcycle.com/sdk/client-side-sdks/javascript/javascript-openfeature', category: ['Client'], }, + { + technology: 'React', + vendorOfficial: true, + href: 'https://docs.devcycle.com/sdk/client-side-sdks/react/react-openfeature', + category: ['Client'], + }, { technology: 'PHP', vendorOfficial: true, diff --git a/src/datasets/sdks/react.ts b/src/datasets/sdks/react.ts index 6f19be2d4..027b25ef8 100644 --- a/src/datasets/sdks/react.ts +++ b/src/datasets/sdks/react.ts @@ -9,7 +9,7 @@ export const React: SDK = { branch: 'main', folder: '/packages/react', logoKey: 'react-no-fill.svg', - technology: 'JavaScript', + technology: 'React', href: '/docs/reference/technologies/client/web/react', includeInSupportMatrix: false, }; diff --git a/src/datasets/types.ts b/src/datasets/types.ts index 3b3b3f694..66498be27 100644 --- a/src/datasets/types.ts +++ b/src/datasets/types.ts @@ -22,7 +22,8 @@ export type Technology = | 'Python' | 'Swift' | 'Rust' - | 'Ruby'; + | 'Ruby' + | 'React'; export type Category = 'Server' | 'Client'; export type Type = 'Hook' | 'Provider' | 'SDK';