You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(selectedAccount&&!responseData.accounts.find((account)=>account.accountId===selectedAccount)){// Capitalization rule exception: `accountId` is a property of an API returned value.
errorMsg=__('You currently don\'t have access to this Google Tag Manager account. You can either request access from your team, or remove this Google Tag Manager snippet and connect to a different account.','google-site-kit');
149
149
}
150
150
151
151
constchooseContainer={
152
-
containerId: 0,
153
-
publicId: 0,
152
+
containerId: 0,// Capitalization rule exception: `containerId` matches an API returned value.
153
+
publicId: 0,// Capitalization rule exception: `publicId` is a property of an API returned value.
constaccountID=responseData.accounts[0] ? responseData.accounts[0].accountId : null;// Capitalization rule exception: `accountId` is a property of an API returned value.
159
+
constpublicID=responseData.containers[0] ? responseData.containers[0].publicId : null;// Capitalization rule exception: `publicId` is a property of an API returned value.
160
160
161
161
this.setState({
162
162
isLoading: false,
@@ -195,15 +195,15 @@ class TagmanagerSetup extends Component {
0 commit comments