diff --git a/.changelog/17010.txt b/.changelog/17010.txt new file mode 100644 index 00000000000..2f169aed28c --- /dev/null +++ b/.changelog/17010.txt @@ -0,0 +1,3 @@ +```release-note:bug +ui: fix a mirage-only issue where our mock token logs repeated unnecessarily +``` diff --git a/ui/mirage/scenarios/default.js b/ui/mirage/scenarios/default.js index c9d1140f3b3..14334d40c37 100644 --- a/ui/mirage/scenarios/default.js +++ b/ui/mirage/scenarios/default.js @@ -664,11 +664,12 @@ Secret: ${token.secretId} Accessor: ${token.accessorId} `); - - console.log( - 'Alternatively, log in with a JWT. If it ends with `management`, you have full access. If it ends with `bad`, you`ll get an error. Otherwise, you`ll get a token with limited access.' - ); }); + + console.log( + 'Alternatively, log in with a JWT. If it ends with `management`, you have full access. If it ends with `bad`, you`ll get an error. Otherwise, you`ll get a token with limited access.' + ); + console.log('====================================='); } function getConfigValue(variableName, defaultValue) {