courseTableUserProfileProvider top-level property
final
Provides the current user's basic profile for course table header.
Returns null if not logged in. Automatically fetches full profile if stale.
Implementation
final courseTableUserProfileProvider = FutureProvider.autoDispose<User?>((ref) {
return ref.watch(authRepositoryProvider).getUser();
});