fix: typo
This commit is contained in:
parent
98cfb9c6c1
commit
bbae08a925
2 changed files with 7 additions and 2 deletions
|
@ -4,13 +4,13 @@ const SUPABASE_URL = process.env.SUPABASE_URL
|
||||||
const SUPABASE_KEY = process.env.SUPABASE_KEY
|
const SUPABASE_KEY = process.env.SUPABASE_KEY
|
||||||
const supabase = createClient(SUPABASE_URL, SUPABASE_KEY)
|
const supabase = createClient(SUPABASE_URL, SUPABASE_KEY)
|
||||||
|
|
||||||
export default async function fetchSyndication() {
|
export default async function fetchActivity() {
|
||||||
const { data, error } = await supabase
|
const { data, error } = await supabase
|
||||||
.from('optimized_all_activity')
|
.from('optimized_all_activity')
|
||||||
.select('feed')
|
.select('feed')
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
console.error('Error fetching search index data:', error)
|
console.error('Error fetching activity data:', error)
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
5
src/pages/dynamic/dynamic.html
Normal file
5
src/pages/dynamic/dynamic.html
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
permalink: "/dynamic.html"
|
||||||
|
---
|
||||||
|
<!--CONTENT-->
|
Reference in a new issue