fix: Panel height should be 100% when casted (#1750)

This commit is contained in:
Dermot Duffy
2024-12-13 08:11:26 -08:00
committed by GitHub
parent e0335c529c
commit ed0bb99a45
7 changed files with 53 additions and 19 deletions
+7
View File
@@ -0,0 +1,7 @@
/**
* Determine if the card is currently being casted.
* @returns
*/
export const isBeingCasted = (): boolean => {
return !!navigator.userAgent.match(/CrKey\//);
};