Conversation
|
@claude review this PR |
|
Claude finished @alyssoncm's task in 1m 28s —— View job PR Review: Add Authentication in App Settings
Overall, the PR introduces a functional OAuth/Social Auth settings page with a clean structure. A few issues worth addressing: Bugs & Issues1. Deprecated lifecycle method // ❌
componentWillMount() {
this.loadData();
}
// ✅
componentDidMount() {
this.loadData();
}2. VKontakte field naming inconsistency value={vkontakte.appIds ?? ''} // appIds implies array, but it's a stringThe name should be clarified — either rename the key to 3. Subtle 4. Fragile afterSave={({ fields, resetFields }) => {
this.setState({ ... });
setTimeout(() => resetFields(), 1200); // fragile timing
}}5. No Facebook App ID format validation Minor / Style6. 7. 8. Toolbar renders empty Summary
|
No description provided.