Skip to content

Commit

Permalink
👻 Fix key warnings on applications pages (#1066)
Browse files Browse the repository at this point in the history
Closes #1065

Signed-off-by: ibolton336 <ibolton@redhat.com>
  • Loading branch information
ibolton336 authored Jun 23, 2023
1 parent 94b0eaa commit 7fd4726
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ export const AnalysisWizard: React.FC<IAnalysisWizard> = ({

const { handleSubmit, watch, reset } = methods;
const values = watch();
console.log("values", values);

enum StepId {
AnalysisMode = 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,7 @@ export const ApplicationsTableAnalyze: React.FC = () => {
const applicationDeleteDropdown = applicationWriteAccess
? [
<ConditionalTooltip
key="delete-app-tooltip"
isTooltipEnabled={
selectedRows.length < 1 ||
selectedRows.some(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,7 @@ export const ApplicationsTable: React.FC = () => {
const applicationDeleteDropdown = applicationWriteAccess
? [
<ConditionalTooltip
key="delete-app-tooltip"
isTooltipEnabled={
selectedRows.length < 1 ||
selectedRows.some(
Expand Down

0 comments on commit 7fd4726

Please sign in to comment.