- import Foundation
- enum RedditAuthChromeStyle {
- /// Placeholder for optional Reddit auth UI tweaks. Close buttons are left visible
- /// so users can dismiss the login modal if sign-in fails or stalls.
- static let injectionScript = """
- (function() {
- const STYLE_ID = 'reddora-auth-chrome-style';
- if (document.getElementById(STYLE_ID)) return;
- })();
- """
- }
|