Skip to content

Commit

Permalink
fixing ci cd max len error
Browse files Browse the repository at this point in the history
  • Loading branch information
Israellund committed Sep 10, 2024
1 parent 090e62c commit a0ff3ce
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,11 @@ const ConnectChainToCommunityTask = () => {
openConfirmation({
title: 'Connect Chain to Community',

description: `Are you sure you want to connect ${communityLookupData?.name} to ${chainNameAndId.label}? This will replace the existing chain with ${chainNameAndId.label} and might affect existing features of the community that depend on the existing chain node. Do you want to proceed?`,
// eslint-disable-next-line max-len
description:
`Are you sure you want to connect ${communityLookupData?.name} to ${chainNameAndId.label}?` +
`This will replace the existing chain with ${chainNameAndId.label} and might affect existing` +
`features of the community that depend on the existing chain node. Do you want to proceed?`,
buttons: [
{
label: 'Update',
Expand Down

0 comments on commit a0ff3ce

Please sign in to comment.