1
0
Fork 0

Change: Disable surveys for github previews

pull/14392/head
Koen Bussemaker 2025-06-26 15:31:04 +02:00
parent bd2430dc94
commit 44204db220
1 changed files with 4 additions and 0 deletions

View File

@ -36,7 +36,11 @@ public:
constexpr static bool IsSurveyPossible()
{
#if defined(__EMSCRIPTEN__)
return false; // Disable surveys for GitHub previews
#else
return true;
#endif
}
private: