Skip to content

Commit

Permalink
Corrected text: #2744
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Oct 11, 2024
1 parent 019ae81 commit 2ce22b8
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/admin/src-admin/src/dialogs/AddInstanceDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,7 @@ class AddInstanceDialog extends Component<AddInstanceDialogProps, AddInstanceDia
const array = [];
for (const adapter of dependencies) {
if (!adapter.installedVersion) {
array.push(
this.props.t(
'Latest available version of "%s" is required, but nothing installed. Please install first "%s" and then retry.',
adapter.name,
adapter.name,
),
);
array.push(this.props.t('No version of %s', adapter.name, adapter.name));
} else if (!adapter.rightVersion) {
array.push(
`${this.props.t('Invalid version of %s. Required %s. Current ', adapter.name, adapter.version)}${adapter.installedVersion}`,
Expand Down

0 comments on commit 2ce22b8

Please sign in to comment.