pl-fe: remove unused code
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
7072401f18
commit
41f17e17c5
2 changed files with 0 additions and 4 deletions
|
@ -39,8 +39,6 @@ interface IStatusList extends Omit<IScrollableList, 'onLoadMore' | 'children'> {
|
|||
timelineId?: string;
|
||||
/** Whether to display a gap or border between statuses in the list. */
|
||||
divideType?: 'space' | 'border';
|
||||
/** Whether to display ads. */
|
||||
showAds?: boolean;
|
||||
/** Whether to show group information. */
|
||||
showGroup?: boolean;
|
||||
}
|
||||
|
@ -55,7 +53,6 @@ const StatusList: React.FC<IStatusList> = ({
|
|||
timelineId,
|
||||
isLoading,
|
||||
isPartial,
|
||||
showAds = false,
|
||||
showGroup = true,
|
||||
className,
|
||||
...other
|
||||
|
|
|
@ -68,7 +68,6 @@ const HomeTimeline: React.FC = () => {
|
|||
onLoadMore={handleLoadMore}
|
||||
timelineId='home'
|
||||
divideType={(theme === 'black' || isMobile) ? 'border' : 'space'}
|
||||
showAds
|
||||
emptyMessage={
|
||||
<Stack space={1}>
|
||||
<Text size='xl' weight='medium' align='center'>
|
||||
|
|
Loading…
Reference in a new issue