mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
Spelling and grammar corrections
This commit is contained in:
@@ -19,7 +19,7 @@ export const getPublicIpWithFallback = async () => {
|
||||
ip = await publicIpv4();
|
||||
} catch (error) {
|
||||
console.log(
|
||||
"Error to obtain public IPv4 address, falling back to IPv6",
|
||||
"Error obtaining public IPv4 address, falling back to IPv6",
|
||||
// @ts-ignore
|
||||
error.message,
|
||||
);
|
||||
@@ -27,7 +27,7 @@ export const getPublicIpWithFallback = async () => {
|
||||
ip = await publicIpv6();
|
||||
} catch (error) {
|
||||
// @ts-ignore
|
||||
console.error("Error to obtain public IPv6 address", error.message);
|
||||
console.error("Error obtaining public IPv6 address", error.message);
|
||||
ip = null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user