···2233export const TakesConfig = {
44 // Default takes session length in minutes (should be 90 for production)
55- DEFAULT_SESSION_LENGTH: 5,
55+ DEFAULT_SESSION_LENGTH: 90,
6677 // Maximum time in minutes that a takes session can be paused before automatic expiration
88- MAX_PAUSE_DURATION: 3,
88+ MAX_PAUSE_DURATION: 45,
991010 // Maximum number of past takes to display in history
1111- MAX_HISTORY_ITEMS: 5,
1111+ MAX_HISTORY_ITEMS: 7,
12121313 // Time thresholds for notifications (in minutes)
1414 NOTIFICATIONS: {
1515 // When to send a warning about low time remaining (minutes)
1616- LOW_TIME_WARNING: 2,
1616+ LOW_TIME_WARNING: 5,
17171818 // When to send a warning about pause expiration (minutes)
1919 PAUSE_EXPIRATION_WARNING: 5,
20202121 // Frequency to check for notifications (milliseconds)
2222- CHECK_INTERVAL: 5 * 1000, // Every minute
2323- },
2424-2525- // Modal settings
2626- MODAL: {
2727- // Maximum length for take description
2828- MAX_DESCRIPTION_LENGTH: 100,
2222+ CHECK_INTERVAL: 10 * 1000, // Every 10 seconds
2923 },
3024};
3125