Skip to content

Commit

Permalink
hide thread title
Browse files Browse the repository at this point in the history
  • Loading branch information
saifullah-talukder committed Jun 26, 2024
1 parent c3b4ba5 commit 9696baa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/search/new-search-response.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function NewSearchResponse(props: NewSearchResponseProps) {
<div className={twMerge('w-full min-h-screen flex flex-col justify-between', props.className)}>
<div className="w-full flex">
<div className="w-full flex flex-col px-10">
<SearchTitle className="mx-10 mt-10" title={props.response[0]?.search.query} />
{/* <SearchTitle className="mx-10 mt-10" title={props.response[0]?.search.query} /> */}
<div className="flex flex-col px-10">
<div className="flex items-center gap-x-3 my-6">
<img src="images/answer-logo.svg" className="w-10 h-10" alt="answer-logo" />
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/search/thread.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default function Thread(props: ThreadProps) {
return (
<div className={twMerge('w-full min-h-screen flex flex-col justify-between', props.className)}>
<div className="flex flex-col">
<H1 className="px-10 py-4 text-2xl xl:text-3xl font-semibold">{props.data?.thread.title}</H1>
{/* <H1 className="px-10 py-4 text-2xl xl:text-3xl font-semibold">{props.data?.thread.title}</H1> */}
<div className="pt-4 flex flex-col gap-y-4">
{_.reverse([...props.data?.searches]).map((search, index) => (
<Fragment key={`search-response-${props.data.thread.thread_id}-${index}`}>
Expand Down

0 comments on commit 9696baa

Please sign in to comment.