diff --git a/Pods/Onboard/Source/OnboardingContentViewController.h b/Pods/Onboard/Source/OnboardingContentViewController.h
index c7fa9203bdd79565c6ccfb7486adce5361ebb939..fb4153924a2a1399c9c03b0cca2548862bf6ffb6 100644
--- a/Pods/Onboard/Source/OnboardingContentViewController.h
+++ b/Pods/Onboard/Source/OnboardingContentViewController.h
@@ -201,10 +201,7 @@ NS_ASSUME_NONNULL_END
  */
 - (nonnull instancetype)initWithTitle:(nullable NSString *)title body:(nullable NSString *)body image:(nullable UIImage *)image videoURL:(nullable NSURL *)videoURL buttonText:(nullable NSString *)buttonText actionBlock:(nullable action_callback)actionBlock;
 
-<<<<<<< HEAD
-=======
 - (nonnull instancetype)initWithTitle:(nullable NSString *)title body:(nullable NSString *)body image:(nullable UIImage *)image videoURL:(nullable NSURL *)videoURL inputView:(nullable UIView *)inputView buttonText:(nullable NSString *)buttonText actionBlock:(nullable action_callback)actionBlock;
->>>>>>> eb9542c70251e074f35bc20a9257b4f829892cc9
 
 /**
  * @brief Method used to update the alpha value for all floating subviews (image, title, body, etc.)
diff --git a/Pods/Onboard/Source/OnboardingContentViewController.m b/Pods/Onboard/Source/OnboardingContentViewController.m
index c7d48f93b18f762faedcae3102b2fc2316b6a9e6..c527ad4aa5138543c7eb493ef2356cf44f45f65a 100644
--- a/Pods/Onboard/Source/OnboardingContentViewController.m
+++ b/Pods/Onboard/Source/OnboardingContentViewController.m
@@ -31,10 +31,7 @@ static CGFloat const kMainPageControlHeight = 35;
 NSString * const kOnboardMainTextAccessibilityIdentifier = @"OnboardMainTextAccessibilityIdentifier";
 NSString * const kOnboardSubTextAccessibilityIdentifier = @"OnboardSubTextAccessibilityIdentifier";
 NSString * const kOnboardActionButtonAccessibilityIdentifier = @"OnboardActionButtonAccessibilityIdentifier";
-<<<<<<< HEAD
-=======
 NSString * const kOnboardInputViewAccessibilityIdentifier = @"OnboardInputViewAccessibilityIdentifier";
->>>>>>> eb9542c70251e074f35bc20a9257b4f829892cc9
 
 @interface OnboardingContentViewController ()
 
@@ -74,13 +71,11 @@ NSString * const kOnboardInputViewAccessibilityIdentifier = @"OnboardInputViewAc
     return [[self alloc] initWithTitle:title body:body videoURL:videoURL buttonText:buttonText action:action];
 }
 
-<<<<<<< HEAD
-=======
+
 + (instancetype)contentWithTitle:(NSString *)title body:(NSString *)body videoURL:(NSURL *)videoURL inputView:(UIView *)inputView buttonText:(NSString *)buttonText action:(dispatch_block_t)action {
     return [[self alloc] initWithTitle:title body:body videoURL:videoURL buttonText:buttonText action:action];
 }
 
->>>>>>> eb9542c70251e074f35bc20a9257b4f829892cc9
 - (instancetype)initWithTitle:(NSString *)title body:(NSString *)body videoURL:(NSURL *)videoURL  buttonText:(NSString *)buttonText action:(dispatch_block_t)action {
     return [self initWithTitle:title body:body image:nil videoURL:videoURL buttonText:buttonText actionBlock:^(OnboardingViewController *onboardController) {
         if (action) {