Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
tgolen committed May 16, 2023
1 parent 0fba43b commit 21f69f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/actions/Link.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function buildOldDotURL(url, shortLivedAuthToken) {
*/
function openOldDotLink(url) {
if (isNetworkOffline) {
buildOldDotURL(url).then(oldDotURL => Linking.openURL(oldDotURL));
buildOldDotURL(url).then((oldDotURL) => Linking.openURL(oldDotURL));
return;
}

Expand Down

0 comments on commit 21f69f6

Please sign in to comment.