fix(ags): get rid of useless console.logs
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
caac0507a1
commit
c6e8ed423c
2 changed files with 6 additions and 2 deletions
|
@ -43,7 +43,9 @@ const getDragState = (box: EventBoxGeneric) => (box
|
|||
|
||||
const NotificationIcon = (notif: NotifObj) => {
|
||||
let iconCmd = (box: CBox):void => {
|
||||
console.log(box);
|
||||
if (!box) {
|
||||
console.log();
|
||||
}
|
||||
};
|
||||
|
||||
if (notif.app_entry && Applications.query(notif.app_entry).length > 0) {
|
||||
|
|
|
@ -26,7 +26,9 @@ const OSDs = () => {
|
|||
transition_duration,
|
||||
|
||||
attribute: { popup: (osd: BoxGeneric) => {
|
||||
console.log(osd);
|
||||
if (!osd) {
|
||||
console.log();
|
||||
}
|
||||
} },
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue