Skip to content

Commit

Permalink
feat: Remove backfill warning (#18566)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfarias authored Nov 13, 2023
1 parent f4e4d4c commit a0241ee
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { Form } from 'kea-forms'
import { Field } from 'lib/forms/Field'
import { batchExportLogic } from './batchExportLogic'
import { LemonCalendarSelectInput } from 'lib/lemon-ui/LemonCalendar/LemonCalendarSelect'
import { LemonBanner } from '@posthog/lemon-ui'

export function BatchExportBackfillModal(): JSX.Element {
const { batchExportConfig, isBackfillModalOpen, isBackfillFormSubmitting } = useValues(batchExportLogic)
Expand Down Expand Up @@ -54,11 +53,6 @@ export function BatchExportBackfillModal(): JSX.Element {
enableFormOnSubmit
className="space-y-2"
>
<LemonBanner type="warning">
Exporting historical data beyond 1 month is not recommended. We are actively working on increasing
this limit.
</LemonBanner>

<Field name="start_at" label="Start Date" className="flex-1">
{({ value, onChange }) => (
<LemonCalendarSelectInput value={value} onChange={onChange} placeholder="Select start date" />
Expand Down

0 comments on commit a0241ee

Please sign in to comment.