Skip to content

Commit 88bf6c1

Browse files
authored
Merge pull request #25 from fr1g/master
2 parents 5e05f33 + 730f084 commit 88bf6c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/LauncherX/LxDownload.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import i18next from "i18next";
22
import { lazy, useEffect, useState } from "react";
33
import { Helmet } from "react-helmet-async";
44
import { useNavigate } from "react-router";
5-
import { ChevronDownIcon, IconFont } from "tdesign-icons-react";
5+
import { ChevronDownIcon, RocketIcon } from "tdesign-icons-react";
66
import { Button, Dropdown, Loading, NotificationPlugin, Space } from "tdesign-react";
77
import { DropdownOption } from "tdesign-react/es/dropdown/type";
88

@@ -162,7 +162,7 @@ function LxDownload() {
162162
}
163163

164164
useEffect(() => {
165-
getLauncherBuilds();
165+
getLauncherBuilds(); // eslint-disable-line
166166
}, []); // eslint-disable-line
167167

168168
function onMenuItemClicked(dropdownItem: DropdownOption) {
@@ -230,7 +230,7 @@ function LxDownload() {
230230
<span
231231
className="inline-block align-middle relative text-black dark:text-white px-3 bg-zinc-300 dark:bg-zinc-700 overflow-hidden py-1 rounded-lg">
232232
<div>
233-
<IconFont className="inline-block -translate-y-0.5" name="rocket" /> {(updatedAt ?? "-").split("T")[0]}
233+
<RocketIcon className="inline-block -translate-y-0.5" /> {(updatedAt ?? "-").split("T")[0]}
234234
</div>
235235
</span>
236236
<RotatingText

0 commit comments

Comments
 (0)