remove console.log

This commit is contained in:
fmtabbara
2022-12-15 17:10:47 +00:00
committed by Jon Häggblad
parent f4711902bd
commit 14847d01b7
2 changed files with 2 additions and 2 deletions
@@ -61,8 +61,6 @@ export const ConnectionStatus: React.FC<{
connectedSince?: DateTime;
serviceProvider?: ServiceProvider;
}> = ({ status, serviceProvider }) => {
console.log(serviceProvider);
const color =
status === ConnectionStatusKind.connected || status === ConnectionStatusKind.disconnecting
? '#21D072'
+2
View File
@@ -86,6 +86,8 @@ export const ClientContextProvider = ({ children }: { children: React.ReactNode
.catch((e) => console.log(e));
listen('socks5-event', (e: TauriEvent) => {
console.log(e);
setError(e.payload);
}).then((result) => {
unlisten.push(result);