mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 14:00:05 +02:00

Launch new editor redesign labs survey GitOrigin-RevId: a39b319aecde7fa9a00fb0f7f77814f6a277ab6c
9 lines
302 B
TypeScript
9 lines
302 B
TypeScript
import { useFeatureFlag } from '@/shared/context/split-test-context'
|
|
|
|
export const useSurveyUrl = () => {
|
|
const newErrorlogs = useFeatureFlag('new-editor-error-logs-redesign')
|
|
if (newErrorlogs) {
|
|
return 'https://forms.gle/83QJ9ALJkiugxTZf8'
|
|
}
|
|
return 'https://forms.gle/soyVStc5qDx9na1Z6'
|
|
}
|