Skip to content

Commit

Permalink
Merge branch 'RSSNext:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
konata33 authored Oct 17, 2024
2 parents de58649 + 5b3f5ce commit a40cff3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const DrawerModalLayout: FC<PropsWithChildren> = ({ children }) => {
className={cn(
"flex flex-col items-center overflow-hidden rounded-xl border bg-theme-background p-8 pb-0",
"shadow-drawer-to-left w-[60ch] max-w-full",
"fixed inset-y-2 right-2",
"fixed bottom-0 right-2 safe-inset-top-4",
)}
>
{children}
Expand Down
2 changes: 1 addition & 1 deletion apps/renderer/src/modules/settings/tabs/general.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
SelectTrigger,
SelectValue,
} from "~/components/ui/select"
import { useProxyValue, useSetProxy } from "~/hooks/common/useProxySetting"
import { useProxyValue, useSetProxy } from "~/hooks/biz/useProxySetting"
import { fallbackLanguage } from "~/i18n"
import { initPostHog } from "~/initialize/posthog"
import { tipcClient } from "~/lib/client"
Expand Down
2 changes: 1 addition & 1 deletion apps/renderer/src/modules/settings/tabs/lists/modals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ const RowRender = ({ feedId, listId }: { feedId: string; listId: string }) => {
<TableCell size="sm">
<a
target="_blank"
href={UrlBuilder.shareList(feed.id)}
href={UrlBuilder.shareFeed(feed.id)}
className="flex items-center gap-2 font-semibold"
>
{feed.siteUrl && <FeedIcon className="mr-0" siteUrl={feed.siteUrl} />}
Expand Down

0 comments on commit a40cff3

Please sign in to comment.