Skip to content

Commit bb81754

Browse files
committed
chore: cleanup
1 parent 5330c49 commit bb81754

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/components/ui/section.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ const Section = React.forwardRef<
88
>(({ className, ...props }, ref) => (
99
<div
1010
ref={ref}
11-
className={cn(
12-
"group/section flex flex-col gap-8 md:flex-row lg:gap-16",
13-
className
14-
)}
11+
className={cn("flex flex-col gap-8 md:flex-row lg:gap-16", className)}
1512
{...props}
1613
/>
1714
))

src/lib/api/fetchRSS.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { isValidDate } from "../utils/date"
66
/**
77
* Fetches RSS feed from the specified XML URL(s).
88
* @param xmlUrl - The URL(s) of the XML feed to fetch.
9-
* @returns An array of RSS items containing the publication date, title, link, and source.
9+
* @returns An array sources, each containing an array of RSS items
1010
*/
1111
export const fetchRSS = async (xmlUrl: string | string[]) => {
1212
const urls = Array.isArray(xmlUrl) ? xmlUrl : [xmlUrl]

src/styles/colors.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
--teal-600: 163, 88%, 39%; /* #0CB988 */
6262
--teal-700: 163, 82%, 33%; /* #0F9971 */
6363
--teal-800: 163, 93%, 21%; /* #04674B */
64-
--teal-900: 162, 97%, 13% /* #01422F */
64+
--teal-900: 162, 97%, 13%; /* #01422F */
6565

6666
--orange-100: 30, 100%, 94%; /* #FFF0DB */
6767
--orange-200: 30, 100%, 82%; /* #FFD7A7 */

0 commit comments

Comments
 (0)