Skip to content

Commit 423fc0d

Browse files
committed
Refactor PinnedPosts component to adjust column width for better display
1 parent bc0fbba commit 423fc0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llmstack/client/src/components/store/PinnedPosts.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const PinnedPosts = ({ username }) => {
9999
const handleResize = () => {
100100
if (containerRef.current) {
101101
const width = containerRef.current.clientWidth;
102-
const newCols = Math.floor(width / 280);
102+
const newCols = Math.floor(width / 220);
103103
setCols(newCols);
104104
}
105105
};

0 commit comments

Comments
 (0)