From 804a9bdae28cf403f05f798d910d885ea8daada6 Mon Sep 17 00:00:00 2001 From: Imre Kristoffer Eilertsen Date: Thu, 10 Sep 2020 08:35:07 +0200 Subject: [PATCH] Update SoftwareIcon.tsx --- web/src/components/softwareCloud/SoftwareIcon.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/src/components/softwareCloud/SoftwareIcon.tsx b/web/src/components/softwareCloud/SoftwareIcon.tsx index 242147339..ff893547a 100644 --- a/web/src/components/softwareCloud/SoftwareIcon.tsx +++ b/web/src/components/softwareCloud/SoftwareIcon.tsx @@ -44,6 +44,7 @@ import { img42, img43, img44, + img45, } from "./imgs"; interface Props { @@ -68,7 +69,7 @@ interface Icon { const icons: { [id: number]: Icon } = { 1: { image: img01, imageTitle: "uBlock Origin" }, 2: { image: img02, imageTitle: "Adblock Plus" }, - 3: { image: img03, imageTitle: "AdGuard" }, + 3: { image: img03, imageTitle: "AdGuard (free versions)" }, 4: { image: img04, imageTitle: "DNS66" }, 5: { image: img05, imageTitle: "Nano Adblocker" }, 6: { image: img06, imageTitle: "AdBlock" }, @@ -109,4 +110,5 @@ const icons: { [id: number]: Icon } = { 42: { image: img42, imageTitle: "dnscrypt-proxy" }, 43: { image: img43, imageTitle: "SmartDNS" }, 44: { image: img44, imageTitle: "AdGuard for Windows/macOS" }, + 45: { image: img45, imageTitle: "AdGuard for Android" }, };