Skip to content

Commit 809214d

Browse files
Purple-EyeZPalmDevsnexpid
authored
fix: update AssetId in Search component and AddonPage (#200)
Co-authored-by: Palm <[email protected]> Co-authored-by: nexpid <[email protected]>
1 parent 9578321 commit 809214d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/ui/components/AddonPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export default function AddonPage<T extends object>({ CardComponent, ...props }:
175175
<View style={{ flexDirection: "row", gap: 8 }}>
176176
<Search style={{ flexGrow: 1 }} isRound={!!props.sortOptions} onChangeText={v => setSearch(v)} />
177177
{props.sortOptions && <IconButton
178-
icon={findAssetId("ic_forum_channel_sort_order_24px")}
178+
icon={findAssetId("ArrowsUpDownIcon")}
179179
variant="tertiary"
180180
disabled={!!search}
181181
onPress={() => showSimpleActionSheet({

src/lib/ui/components/Search.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export interface SearchProps {
1212
}
1313

1414
function SearchIcon() {
15-
return <Image style={{ width: 16, height: 16 }} source={findAssetId("search")!} />;
15+
return <Image style={{ width: 16, height: 16 }} source={findAssetId("MagnifyingGlassIcon")!} />;
1616
}
1717

1818
export default ({ onChangeText, placeholder, style, isRound }: SearchProps) => {

0 commit comments

Comments
 (0)