diff --git a/includes/View.php b/includes/View.php
index db445d2..f8e5bf3 100644
--- a/includes/View.php
+++ b/includes/View.php
@@ -223,10 +223,20 @@ class View extends ContextSource {
 		}
 
 		$out = $this->getOutput();
+
+		$jsonBlobResponse = $apiResponse;
+
+		// Temporary fix for T107170
+		array_walk_recursive( $jsonBlobResponse, function ( &$value, $key ) {
+			if ( stristr( $key, 'Token' ) !== false ) {
+				$value = null;
+			}
+		} );
+
 		// Add JSON blob for OOUI widgets
 		$out->addHTML( Html::inlineScript(
 			'mw.flow = mw.flow || {}; mw.flow.data = ' .
-			FormatJson::encode( $apiResponse ) .
+			FormatJson::encode( $jsonBlobResponse ) .
 			';'
 		) );
 
