fix: review comments

This commit is contained in:
Pranav C
2024-06-18 19:06:18 +00:00
parent 212488b1c1
commit 8cc39feb60
2 changed files with 14 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ const onEasterEgg = () => {
const clientTypes = computed(() => {
return _clientTypes.filter((type) => {
return ![ClientType.SNOWFLAKE, ClientType.DATABRICKS, ...(easterEgg.value ? [ClientType.MSSQL] : [])].includes(type.value)
return ![ClientType.SNOWFLAKE, ClientType.DATABRICKS, ...(easterEgg.value ? [] : [ClientType.MSSQL])].includes(type.value)
})
})