Skip to content

Commit

Permalink
refactor: simplify episode-summary query
Browse files Browse the repository at this point in the history
  • Loading branch information
altaywtf committed Dec 16, 2023
1 parent ae1a9d6 commit 6b9adf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/episode-ai-summary/episode-ai-summary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function EpisodeAISummary(props: Props) {
const credits = await fetchAccountAICredits();
const { data, error } = await supabase
.from('episode_content')
.select('*, user:account(id, display_name, avatar_url)')
.select('id, text_summary')
.eq('episode', props.id);

if (error) {
Expand Down

0 comments on commit 6b9adf2

Please sign in to comment.