Skip to content

Commit 04c93cd

Browse files
chore: update blog content
1 parent d20ad1a commit 04c93cd

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

apps/sim/app/(landing)/blog/studio-content.tsx

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -100,26 +100,6 @@ export function StudioContent({ posts, initialTag, initialQuery }: StudioContent
100100
}
101101
const showHero = isDefaultView
102102

103-
const handleCategorySelect = useCallback(
104-
(id: string | null) => {
105-
setActiveTag(id)
106-
setQuery('')
107-
setPage(1)
108-
syncUrl(id, '')
109-
},
110-
[syncUrl]
111-
)
112-
113-
const handleSearch = useCallback(
114-
(value: string) => {
115-
setQuery(value)
116-
setActiveTag(null)
117-
setPage(1)
118-
syncUrl(null, value.trim())
119-
},
120-
[syncUrl]
121-
)
122-
123103
const handleClearAll = useCallback(() => {
124104
setActiveTag(null)
125105
setQuery('')
@@ -129,7 +109,6 @@ export function StudioContent({ posts, initialTag, initialQuery }: StudioContent
129109

130110
return (
131111
<div className='flex min-h-0 flex-1 flex-col overflow-x-clip px-4 sm:px-6 lg:px-12'>
132-
133112
<main className='relative min-w-0 flex-1'>
134113
<div className='flex flex-col'>
135114
{showHero && (

0 commit comments

Comments
 (0)