mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-02 13:01:29 +02:00
Address CodeRabbit review and fix CI on embedded-vnc
This commit is contained in:
@@ -113,15 +113,17 @@ func (s *serviceClient) showApprovalUI(req approvalRequest) {
|
||||
decide(outcome{})
|
||||
return
|
||||
}
|
||||
updateCountdown()
|
||||
fyne.Do(updateCountdown)
|
||||
}
|
||||
}()
|
||||
|
||||
go func() {
|
||||
o := <-decided
|
||||
s.sendApprovalResponse(req.requestID, o.accept, o.viewOnly)
|
||||
w.Close()
|
||||
s.app.Quit()
|
||||
fyne.Do(func() {
|
||||
w.Close()
|
||||
s.app.Quit()
|
||||
})
|
||||
}()
|
||||
|
||||
w.Show()
|
||||
|
||||
Reference in New Issue
Block a user