chore: adjust experimental features text (#8044)

close AF-1313 AF-1312 AF-1311 AF-1310
This commit is contained in:
JimmFly
2024-09-02 07:40:55 +00:00
parent 4caf32629a
commit a802dc4fd6
4 changed files with 13 additions and 3 deletions

View File

@@ -114,7 +114,11 @@ const ExperimentalFeaturesItem = ({ flag }: { flag: Flag }) => {
},
[flag]
);
const link = flag.feedbackType ? feedbackLink[flag.feedbackType] : undefined;
const link = flag.feedbackType
? flag.feedbackLink
? flag.feedbackLink
: feedbackLink[flag.feedbackType]
: undefined;
if (flag.configurable === false) {
return null;