fix: intake refactor (#6698)

* fix: refactor

* fix: refactor

* fix: type

* chore: added source data in intake

* fix: css

---------

Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
This commit is contained in:
Akshita Goyal 2025-03-20 14:06:36 +05:30 committed by GitHub
parent 075c234385
commit e22265dc93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 104 additions and 94 deletions

View file

@ -11,12 +11,7 @@ export type TProperties = {
icon: ReactNode;
isPro: boolean;
isEnabled: boolean;
renderChildren?: (
currentProjectDetails: IProject,
isAdmin: boolean,
handleSubmit: (featureKey: string, featureProperty: string) => Promise<void>,
workspaceSlug: string
) => ReactNode;
renderChildren?: (currentProjectDetails: IProject, workspaceSlug: string) => ReactNode;
};
export type TFeatureList = {
[key: string]: TProperties;