Merge "Add timeout for exiting catapult loading state"
diff --git a/.bazelrc b/.bazelrc
index 6359ba3..a69ccad 100644
--- a/.bazelrc
+++ b/.bazelrc
@@ -96,6 +96,7 @@
 
 build --spawn_strategy=sandboxed
 build --sandbox_default_allow_network=false
+build --incompatible_exclusive_test_sandboxed
 
 build --strategy=TsProject=sandboxed
 build --strategy=CopyFile=standalone
diff --git a/scouting/www/app/app.ts b/scouting/www/app/app.ts
index 011c94f..597e5c5 100644
--- a/scouting/www/app/app.ts
+++ b/scouting/www/app/app.ts
@@ -10,7 +10,7 @@
   | 'Pit';
 
 // Ignore the guard for tabs that don't require the user to enter any data.
-const unguardedTabs: Tab[] = ['MatchList'];
+const unguardedTabs: Tab[] = ['MatchList', 'View'];
 
 type TeamInMatch = {
   teamNumber: string;