You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: replace Markdown component in some generic studio components (supabase#30666)
We no longer want to use Markdown when not necessary. I checked the props for these components and we were only passing in a regular text without any actual markdown
// [Joshen] CSV exports require this guard as a fail-safe if the table is
36
36
// just too large for a browser to keep all the rows in memory before
37
37
// exporting. Either that or export as multiple CSV sheets with max n rows each
38
38
exportconstMAX_EXPORT_ROW_COUNT=500000
39
-
exportconstMAX_EXPORT_ROW_COUNT_MESSAGE=`Sorry! We're unable to support exporting row counts larger than ${MAX_EXPORT_ROW_COUNT.toLocaleString()} at the moment. Alternatively, you may consider using [pg_dump](https://supabase.com/docs/reference/cli/supabase-db-dump) via our CLI instead.`
39
+
exportconstMAX_EXPORT_ROW_COUNT_MESSAGE=(
40
+
<>
41
+
Sorry! We're unable to support exporting row counts larger than $
42
+
{MAX_EXPORT_ROW_COUNT.toLocaleString()} at the moment. Alternatively, you may consider using
0 commit comments