From d5ace6df77f0571088ff24b376f5413e1d60df5e Mon Sep 17 00:00:00 2001 From: aurreco-uga Date: Mon, 21 Nov 2022 16:47:52 -0500 Subject: [PATCH] Update UnhandledErrorStoreModule.ts --- Client/src/StoreModules/UnhandledErrorStoreModule.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Client/src/StoreModules/UnhandledErrorStoreModule.ts b/Client/src/StoreModules/UnhandledErrorStoreModule.ts index ba93427e..858edecc 100644 --- a/Client/src/StoreModules/UnhandledErrorStoreModule.ts +++ b/Client/src/StoreModules/UnhandledErrorStoreModule.ts @@ -37,7 +37,8 @@ export function reduce(state: State = initialState, action: Action): State { // TODO Allow this to be configured by wdk-client consumer function ignoreError(message: string): boolean { return ( - /ResizeObserver loop limit exceeded/.test(message) + /ResizeObserver loop limit exceeded/.test(message) || + /empty textures are not allowed/.test(message) ) }