Skip to content

Commit ea7797e

Browse files
committed
Fix some lint code issues.
1 parent 8f3278c commit ea7797e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

components/ip2location_io/actions/lookup-hosted-domain/lookup-hosted-domain.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default {
3838
if (response && response.total_domains) {
3939
$.export(
4040
"$summary",
41-
`Successfully retrieved hosted domain information about IP ${this.ip}.`
41+
`Successfully retrieved hosted domain information about IP ${this.ip}.`,
4242
);
4343
}
4444
return response;

components/ip2location_io/ip2location_io.app.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ export default {
4343
* @param {Object} [args.params] - The query parameters
4444
* @param {string} [args.params.ip] - The IP address to lookup (IPv4 or IPv6)
4545
* @param {string} [args.params.format] - Response format (json or xml)
46-
* @param {string} [args.params.lang] - Translation information(ISO639-1) for continent, country, region and city name
46+
* @param {string} [args.params.lang] - Translation information(ISO639-1) for
47+
* continent, country,
48+
* region and city name
4749
* @returns {Promise<Object>} The hosted domain information
4850
*/
4951
lookupIpAddress(args = {}) {

0 commit comments

Comments
 (0)