Files
AFFiNE/packages/frontend/core/src/components/affine
EYHN f46d288b1b fix(core): fix client crash (#12966)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Bug Fixes**
* Improved reliability when displaying OAuth provider icons by handling
cases where the provider may not be recognized, preventing potential
errors during authentication.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2025-07-01 03:38:13 +00:00
..
2025-07-01 03:38:13 +00:00
…

Affine Official Workspace Component

This component need specific configuration to work properly.

Configuration

SWR

Each component use SWR to fetch data from the API. You need to provide a configuration to SWR to make it work.

const Wrapper = () => {
  return (
    <AffineSWRConfigProvider>
      <Component />
    </AffineSWRConfigProvider>
  );
};