mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-21 16:11:13 -05:00
Implement plan to remove public toggle
This commit is contained in:
@@ -968,7 +968,7 @@ export async function submitTimelineEvent(
|
||||
to_entity_id: data.to_entity_id,
|
||||
from_location_id: data.from_location_id,
|
||||
to_location_id: data.to_location_id,
|
||||
is_public: data.is_public ?? true,
|
||||
is_public: true, // All timeline events are public
|
||||
};
|
||||
|
||||
const { error: itemError } = await supabase
|
||||
@@ -1057,7 +1057,7 @@ export async function submitTimelineEventUpdate(
|
||||
to_entity_id: data.to_entity_id,
|
||||
from_location_id: data.from_location_id,
|
||||
to_location_id: data.to_location_id,
|
||||
is_public: data.is_public ?? true,
|
||||
is_public: true, // All timeline events are public
|
||||
};
|
||||
|
||||
const { error: itemError } = await supabase
|
||||
|
||||
Reference in New Issue
Block a user