fix: #479 - Toggle plugin is now experimental feature (#531)

This commit is contained in:
Louis 2023-11-02 19:57:36 +07:00 committed by GitHub
parent 8f9cc300b3
commit bbe1e618a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -169,6 +169,7 @@ const PluginCatalog = () => {
</Button> </Button>
)} )}
</div> </div>
{experimentalFeatureEnabed && (
<Switch <Switch
checked={isActivePlugin} checked={isActivePlugin}
onCheckedChange={(e) => { onCheckedChange={(e) => {
@ -179,6 +180,7 @@ const PluginCatalog = () => {
} }
}} }}
/> />
)}
</div> </div>
) )
})} })}