Skip to content

Commit e15479d

Browse files
committed
Misc cleanup: Remove old print statements.
1 parent e3507fc commit e15479d

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/pages/groups/Audit.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ export default function AuditGroup() {
178178
};
179179

180180
const handleOwnerOrMember = (event: React.MouseEvent<HTMLElement>, newValue: boolean | null) => {
181-
console.log(newValue);
182181
if (newValue == null) {
183182
setSearchParams((params) => {
184183
params.delete('owner');

src/pages/roles/Audit.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ export default function AuditRole() {
173173
};
174174

175175
const handleOwnerOrMember = (event: React.MouseEvent<HTMLElement>, newValue: boolean | null) => {
176-
console.log(newValue);
177176
if (newValue == null) {
178177
setSearchParams((params) => {
179178
params.delete('owner');

src/pages/users/Audit.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ export default function AuditUser() {
175175
};
176176

177177
const handleOwnerOrMember = (event: React.MouseEvent<HTMLElement>, newValue: boolean | null) => {
178-
console.log(newValue);
179178
if (newValue == null) {
180179
setSearchParams((params) => {
181180
params.delete('owner');

0 commit comments

Comments
 (0)