diff --git a/app/models/qbo_item.rb b/app/models/qbo_item.rb
index d4263bc..e5b2406 100644
--- a/app/models/qbo_item.rb
+++ b/app/models/qbo_item.rb
@@ -19,7 +19,7 @@ class QboItem < ActiveRecord::Base
service = Quickbooks::Service::Item.new(:company_id => qbo.realmId, :access_token => Qbo.get_auth_token)
# Update the item table
- service.all.each { |item|
+ service.find_by(:type, "Service").each { |item|
qbo_item = QboItem.find_or_create_by(id: item.id)
qbo_item.name = item.name
qbo_item.id = item.id
diff --git a/app/views/qbo/index.html.erb b/app/views/qbo/index.html.erb
index 120e5de..4970578 100644
--- a/app/views/qbo/index.html.erb
+++ b/app/views/qbo/index.html.erb
@@ -39,5 +39,4 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
<%= link_to "Sync", qbo_sync_path %>
-