We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6d59b0 + 12bdd27 commit 43a1eb3Copy full SHA for 43a1eb3
3 files changed
script/build-web.sh
src/components/Layout/Header.tsx
@@ -61,8 +61,6 @@ export const Header = () => {
61
setDNDDuration('never')
62
}
63
64
- console.log('location', location)
65
-
66
return (
67
<>
68
<header className="AppHeader">
src/features/cards/components/aiCard/ArticleItem.tsx
@@ -36,6 +36,13 @@ const ArticleItem = (props: BaseItemPropsType<Article>) => {
36
<span className="subTitle">{item.title}</span>
37
</CardLink>
38
</p>
39
+ {listingMode === 'compact' && (
40
+ <div className="rowDetails">
41
+ <span className="rowItem capitalize">
42
+ <GoDotFill className="rowItemIcon" /> {item.source}
43
+ </span>
44
+ </div>
45
+ )}
46
{listingMode === 'normal' && (
47
<div className="rowDetails">
48
<span className="rowItem capitalize">
0 commit comments