Skip to content

Commit 4f29309

Browse files
authored
Reduce hasCreatedNewModel form instance created time threshold (#1986)
1 parent 71e772a commit 4f29309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/apps/home/app/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const HomeApp = () => {
4444
const hasPublishedHomepage = !!contentItemPublishings?.length;
4545
const hasCreatedNewModel = models?.some(
4646
(model) =>
47-
moment(model.createdAt).diff(instanceCreatedAtDate, "minutes") >= 10
47+
moment(model.createdAt).diff(instanceCreatedAtDate, "minutes") >= 2
4848
);
4949
const isFetching =
5050
isModelsFetching ||

0 commit comments

Comments
 (0)