Remove preview label from Computed Properties. (#1842)

This commit is contained in:
jawelton74
2024-05-17 06:57:35 -07:00
committed by GitHub
parent b6e3e5ea1c
commit ff4bc78d6c
2 changed files with 2 additions and 2 deletions

View File

@@ -151,7 +151,7 @@ export const getTabTitle = (tab: SettingsV2TabTypes): string => {
case SettingsV2TabTypes.PartitionKeyTab:
return "Partition Keys (preview)";
case SettingsV2TabTypes.ComputedPropertiesTab:
return "Computed Properties (preview)";
return "Computed Properties";
default:
throw new Error(`Unknown tab ${tab}`);
}