Skip to content

Commit

Permalink
fix warning: passing disabled button tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
gabalafou committed Feb 10, 2024
1 parent 11d42d9 commit 546a869
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/environments/EnvironmentList.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ describe("<EnvironmentsList />", () => {
{
id: 2,
name: "python-flask-env",
isPrimary: true
isPrimary: true,
canCreate: true
}
]}
hasMore={false}
Expand All @@ -46,7 +47,8 @@ describe("<EnvironmentsList />", () => {
namespacesList={[
{
name: "default",
id: 1
id: 1,
canCreate: true
}
]}
hasMore={false}
Expand Down

0 comments on commit 546a869

Please sign in to comment.