Do not render preview if protocol between IJ & Gradle does not match (#2556)

This commit is contained in:
Alexey Tsvetkov
2022-12-13 07:22:46 +01:00
committed by GitHub
parent d11cda865d
commit 15aa81c851
2 changed files with 3 additions and 2 deletions

View File

@@ -23,8 +23,9 @@ internal fun RemoteConnection.receiveAttach(
listener?.onError(
"Compose Multiplatform Gradle plugin version is not compatible with Intellij plugin version"
)
} else {
fn()
}
fn()
}
}
}