feedbackmember+detail+review

This commit is contained in:
bagusajisaputroo
2025-04-24 16:56:38 +07:00
parent fdfb603c54
commit bb5db5019d
5 changed files with 568 additions and 263 deletions

View File

@ -1,7 +1,7 @@
import { useContext } from 'react';
import { ManageFeedbackMemberContext } from './ManageFeedbackMemberContext';
const useManageProviderContext = () => {
const useManageFeedbackContext = () => {
const context = useContext(ManageFeedbackMemberContext);
if (!context) throw new Error('useManageProviderContext must be used within AuthProvider');
@ -9,4 +9,4 @@ const useManageProviderContext = () => {
return context;
};
export { useManageProviderContext };
export { useManageFeedbackContext };