-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ワークスペースページとワークスペース作成ページ #212
Conversation
@yu23ki14 一点少し心配していることがありまして、 こちらの問題は一応コードで解決できたのですが、あまりスマートな方法とはいえず、別の箇所でも起こる&より良い方法があるのかも?ということで、コメントさせてもらいました! // frontend/app/routes/workspace._index.tsx
useEffect(() => {
if (smartWalletRef.current !== undefined && !isSmartWallet) return;
const fetchWorkspacesList = async () => {
const _workspacesList = await getWorkspacesList({
walletAddress: address as `0x${string}`,
});
// このセッションでスマートウォレットに接続した記録があれば、ユーザー自身のウォレットによるワークスペースの更新は無視する
if (smartWalletRef.current === undefined || isSmartWallet) {
setWorkspacesList(_workspacesList);
}
};
fetchWorkspacesList();
}, [address, getWorkspacesList]); |
@yawn-c111 |
そうか…なるほど…! |
ワークスペースページとワークスペース作成ページ
Description
お待たせしました!
一通り完了しました!
Done
Fixes # (issue)
Type of change
Please delete options that are not relevant.
Screenshots