We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f60ad45 commit a937812Copy full SHA for a937812
src/app/auth/action/page.tsx
@@ -135,7 +135,8 @@ const ActionHandlerContent: React.FC = () => {
135
const handleAction = async () => {
136
try {
137
const actionInfo = await checkActionCode(auth, codeParam);
138
- const { email, operation } = actionInfo.data;
+ const { operation } = actionInfo;
139
+ const { email } = actionInfo.data;
140
141
if (!email) {
142
throw new Error("Invalid action code: email is missing.");
0 commit comments