Compare commits

...

1 Commits

Author SHA1 Message Date
ammarahm-ed
52df6468b7 mobile: fix sorting favorites 2023-07-18 13:29:21 +05:00

View File

@@ -111,7 +111,13 @@ const List = ({
index={index}
color={headerProps?.color}
title={headerProps?.heading}
type={screen === "Notes" ? "home" : type}
type={
screen === "Notes"
? "home"
: screen === "Favorites"
? "favorites"
: type
}
screen={screen}
isSheet={isSheet}
/>