Merge branch 'develop' of https://codeberg.org/mkljczk/pl-fe into develop
Some checks failed
pl-api CI / Test for pl-api formatting (22.x) (push) Has been cancelled
pl-fe CI / Test and upload artifacts (22.x) (push) Has been cancelled
pl-hooks CI / Test for a successful build (22.x) (push) Has been cancelled
pl-fe CI / deploy (push) Has been cancelled

This commit is contained in:
2026-01-30 23:22:21 +00:00
42 changed files with 291 additions and 159 deletions

View File

@ -81,7 +81,7 @@ const FollowRequestsPage: React.FC = () => {
<ScrollableList
scrollKey='followRequests'
hasMore={hasNextPage}
isLoading={typeof isLoading === 'boolean' ? isLoading : true}
isLoading={isLoading}
onLoadMore={() => fetchNextPage({ cancelRefetch: false })}
emptyMessageText={<FormattedMessage id='empty_column.follow_requests' defaultMessage="You don't have any follow requests yet. When you receive one, it will show up here." />}
>

View File

@ -22,7 +22,7 @@ const OutgoingFollowRequestsPage: React.FC = () => {
<ScrollableList
scrollKey='outgoingFollowRequests'
hasMore={hasNextPage}
isLoading={typeof isLoading === 'boolean' ? isLoading : true}
isLoading={isLoading}
onLoadMore={() => fetchNextPage({ cancelRefetch: false })}
emptyMessageText={<FormattedMessage id='empty_column.outgoing_follow_requests' defaultMessage="You don't have any outgoing follow requests yet. When you try to follow a user, it will show up here." />}
itemClassName='p-2.5'

View File

@ -1,11 +1,11 @@
import React from 'react';
import { ChatProvider } from 'pl-fe/contexts/chat-context';
import ChatPage from 'pl-fe/features/chats/components/chat-page/chat-page';
import ChatsPage from 'pl-fe/features/chats/components/chats-page/chats-page';
const ChatIndex: React.FC = () => (
<ChatProvider>
<ChatPage />
<ChatsPage />
</ChatProvider>
);

View File

@ -35,7 +35,7 @@ const QuotesPage: React.FC = () => {
statusIds={statusIds}
scrollKey={`quotes:${statusId}`}
hasMore={hasNextPage}
isLoading={typeof isLoading === 'boolean' ? isLoading : true}
isLoading={isLoading}
onLoadMore={handleLoadMore}
emptyMessageText={emptyMessage}
/>

View File

@ -22,7 +22,7 @@ const ScheduledStatusesPage = () => {
<Column label={intl.formatMessage(messages.heading)}>
<ScrollableList
hasMore={hasNextPage}
isLoading={typeof isLoading === 'boolean' ? isLoading : true}
isLoading={isLoading}
onLoadMore={() => fetchNextPage({ cancelRefetch: false })}
emptyMessageText={emptyMessage}
listClassName='divide-y divide-solid divide-gray-200 black:divide-gray-800 dark:divide-primary-800'