We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f5bb1e commit 93e2ccfCopy full SHA for 93e2ccf
src/renderer/src/modules/discover/feed-form.tsx
@@ -140,7 +140,7 @@ const FeedInnerForm = ({
140
useEffect(() => {
141
if (subscription) {
142
form.setValue("view", `${subscription?.view}`)
143
- form.setValue("category", subscription?.category)
+ subscription?.category && form.setValue("category", subscription.category)
144
form.setValue("isPrivate", subscription?.isPrivate || false)
145
}
146
}, [subscription])
src/renderer/src/modules/profile/user-profile-modal.tsx
@@ -377,6 +377,7 @@ const SubscriptionItem: FC<{
377
content: ({ dismiss }) => (
378
<FeedForm
379
asWidget
380
+ id={subscription.feedId}
381
url={subscription.feeds.url}
382
defaultValues={{
383
view: defaultView.toString(),
0 commit comments