Activity
Other solution if errors partial is not rendering
def create
    @tweet = Current.user.tweets.new(tweet_params)
    if @tweet.save
      redirect_to tweets_path, notice: "Tweet was scheduled successfully"
    else
      render :new, status: :unprocessable_entity
    end
  end
Thanks!!
thanks!
