diff --git a/frontend/app/components/FFlags/NewFFlag/NewFFlag.tsx b/frontend/app/components/FFlags/NewFFlag/NewFFlag.tsx index 35e296dd2..aad7f9691 100644 --- a/frontend/app/components/FFlags/NewFFlag/NewFFlag.tsx +++ b/frontend/app/components/FFlags/NewFFlag/NewFFlag.tsx @@ -178,6 +178,7 @@ function NewFFlag({ siteId, fflagId }: { siteId: string; fflagId?: string }) { checked={current.isActive} name={'persist-flag'} onChange={() => { + !fflagId && !current.isActive ? toast.success("Feature flag will be enabled upon saving it.") : "" current.setIsEnabled(!current.isActive); }} label={current.isActive ? 'Enabled' : 'Disabled'}