Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Mizu
Commits
9d179c72
Unverified
Commit
9d179c72
authored
3 years ago
by
M. Mert Yıldıran
Committed by
GitHub
3 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Ignore an eslint error (#351)
* Ignore an eslint error * Change the fix
parent
147e812e
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ui/src/App.tsx
+2
-2
ui/src/App.tsx
with
2 additions
and
2 deletions
+2
-2
ui/src/App.tsx
+
2
-
2
View file @
9d179c72
...
...
@@ -35,7 +35,7 @@ const App = () => {
try
{
const
recentTLSLinks
=
await
api
.
getRecentTLSLinks
();
if
(
recentTLSLinks
?.
length
>
0
)
{
setAddressesWithTLS
(
new
Set
(
[...
addressesWithTLS
,
...
recentTLSLinks
]
));
setAddressesWithTLS
(
new
Set
(
recentTLSLinks
));
setShowTLSWarning
(
true
);
}
const
auth
=
await
api
.
getAuthStatus
();
...
...
@@ -45,7 +45,7 @@ const App = () => {
}
})();
},[]);
},
[]);
const
onTLSDetected
=
(
destAddress
:
string
)
=>
{
addressesWithTLS
.
add
(
destAddress
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help